Is there a way to specify a constant at a fixed address in program space without having the linker actually generate data for that memory area? Basically in my application I have a const part number definedconst char __attribute__((address(0x14FF8))) my_p..
↧