The pointer is known by the firmware by `__my_linker_var = ORIGIN(KEY_AREA)`, and the firmware creates the pointer via: ```rust extern "C" { static __my_linker_var: u32; } let pointer = &__my_linker_var as *const u32 as *const u8; ```