17 lines
266 B
C
17 lines
266 B
C
#include <stdio.h>
|
|
|
|
int var __attribute__((section("custom_data"))) = 1337;
|
|
|
|
__attribute__((section("custom_text")))
|
|
void custom()
|
|
{
|
|
printf("Hello from custom() in custom section!\n");
|
|
}
|
|
|
|
int main()
|
|
{
|
|
printf("var = %d\n", var);
|
|
custom();
|
|
return 0;
|
|
}
|