Forum Discussion
Altera_Forum
Honored Contributor
16 years agoHi A.G.
I don't know of any CRC feature but it may be worth checking the GCC documentation. It is possible to specify a memory section to place code or data in e.g. alt_u32 cheese __attribute__ (( section (".nv_sram"))); would put the variable 'cheese' into the memory device called 'nv_sram' in your system. To verify where the linker has placed this variable (and everything else besides), add the following compiler option to your Project properties: -Wl,-Map,Output.map This will create a linker map file called 'Output.map' in your project's output folder. I hope this is useful. All the best Sharkybaba