Files
exkernel/section.c
Fabio Scotto di Santolo c59b4004e5 Implemented project structure
2025-11-29 18:43:07 +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;
}