When single-stepping through assembly code in CCS, why does each step command step through several assembly instructions?
If the C source file is not open in CCS, and the user has loaded the symbols, you may notice that while single-stepping, CCS executes several assembly instructions per step command. This is because CCS is stepping in C source mode, which in some cases, could translate to several assembly instructions for each line of C source. To view the correct stepping, select Mixed Mode.
Related Questions
- How should I structure my CUSP assembly code to make it more readable? Should data go first, or instructions?
- When using inline assembly instructions on the TI C compiler, why does the code break at run-time?
- When using inline assembly instructions on the TI C compiler, why the code breaks at run-time?