Trying to configure linker file for non volatile ram, ram when power is applied, non-volatile when not (retains).
Used this in the SECTIONS to keep from zero filling at run time
NVSRAM > NVSRAM_MEMORY, type = NOINIT
However when loading from an emulator, the (ram) is zero filled.
tried NVSRAM > NVSRAM_MEMORY, type = NOLOAD
to keep from zero fill on load, but then run time it zeroed it.
How can I do both, basicaly make it keep anything from writing to it execpt the actual code.
Thanks,