Tool/software: Code Composer Studio
I am running Code Composer Version: 5.1.0.09000 (for legacy reasons) and I'm having great difficulty telling the debugger to begin stepping from the start address 0x3F776. Per the C2000 data sheet and boot rom documentation TMS320x2802x Piccolo Boot ROM Reference Guide, the processor executes the instructions at that address which should be Jump to start routine.
What is happening is that Code Composer is jumping directly to main and stopping there, even though I have disabled that option under the Debug Configurations -> Target tab -> Generic Debug Options -> Auto Run Options
My problem is that here are intializations taking place - ie SP etc, that are not being executed because they're being skipped over by the debugger.
I don't want to hack my code to place the assembly instruction setting the stack pointer in my main.c code when it should work when placed in the assembly file that does call the main function.
Thanks,