* ```c __attribute__((section(".my_key"))) const uint8_t my_key[16]; ``` and then in the link something like: ``` SECTIONS { .key_loc : { *(.my_key) } > KEY_AREA } ```