Forum Discussion
Altera_Forum
Honored Contributor
22 years agoHow can I start different programs from flash.
How can I start different programs from flash. Dependend on a configuration structure in flash I want to start different programs from flash. the reset vector in SOPC Builder should alwa...
Altera_Forum
Honored Contributor
22 years agoI changed the static asm call to
void (*pBoot)(void); // declare function pointer int startadd; // declare startaddress as integer .. .. startadd=0x200000; pBoot=(void*)startadd; pBoot(); // jump to new altera bootloader in flash and this seems to work. hope to get some more opinions or better solutions for updating software.