4.4.4.1 Absolute Objects In Program Memory
Any const
-qualified object which has static storage
duration and which has file scope can be placed at an absolute address in program
memory.
For example:
const int settings[] __at(0x200) = { 1, 5, 10, 50, 100 };
will place the array settings
at address 0x200 in the
program memory.