Hi Conners,
> ...
> read/write data memory heap memory and stack memory are all set to SDRAM.
> This conflicts with the settings i made in builder. Is this correct?
This is not a conflict. Remember, the only thing you changed was the exception
address -- the address that is loaded into the PC when an exception is taken.
Everything else is the same. You can continue to place all of your code/data in
SDRAM -- only the exception code _must_ be located at the exception address
in your SRAM.
> Can anyone help me understand why this occurs and what i need to do to make my
> system behave.
Make sure your exception code is really where it ought to be: use objdump to confirm
that your ".exceptions" section is correctly located.
BTW: How do you load your application into memory?
Regards,
--Scott