Forum Discussion
Altera_Forum
Honored Contributor
9 years agoOoooppps, something went wrong.
It's stuck in reset as this where the processor goes upon reset (reset is an exception). You may able to go into your "C" code by replacing the while(1) in void __attribute__ ((interrupt)) __cs3_reset (void) with this: extern void _start(void); _start() I'm not sure at all it will be OK as the stack hasn't been set-up. The other way is to simply comment out / remove the code for __cs3_reset. As it is defined, it most likely overloads the default one from the "C" library.