You can put a global variable or a function in your own section by using the gcc attribute specification.
For the variable you will do the following:
char __attribute__ ((section (".page0"))) value;
and the value global variable will be defined within the .page0
|