Forum Discussion
Altera_Forum
Honored Contributor
22 years agoChanging the RAM adr for my program
Hi I want to know how I can change the address where the program will be copied into the RAM. Right now everytime I build the app the srec2flash utility reports that the app spans from 0x100000...
Altera_Forum
Honored Contributor
22 years agoIf its a simple program just use -b build option to set the base address? I use it all the time to relocate srec files:
nb -b 0x1000600 my_prog.c This gives germs that starts at 0x1000000 enough room so that I can load and reload new builds over the serial port without rebooting my board. Ken