Forum Discussion
Altera_Forum
Honored Contributor
19 years agoPlacing variables in memory
Hi, I'm developing an application with CyclloneII and I have the issue below: is there a way to place a variable at particular address in memory, something like the "_AT_" flag of som...
Altera_Forum
Honored Contributor
19 years agoHi,
You can use register variable of NIOS cpu. Here is the syntex of it. register unsigned int temp_data2 asm("r12"); by this you have a freedom to choose the memory location of your specific variables. I hope this would be sufficient help for you. Regards, slsnios