Files
exkernel/example/section.c
Fabio Scotto di Santolo 7eaf73e6fe Move test in a specific folder
2025-11-29 18:47:37 +01:00

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;
}