mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-04 00:31:27 +00:00
8 lines
122 B
C
8 lines
122 B
C
char foo_data __attribute__(( section("FOO") )) = { 0 };
|
|
|
|
void * __start_FOO;
|
|
|
|
void * foo() {
|
|
return __start_FOO;
|
|
}
|