The Debug Control menu provides commands to control how you debug your program. The Debug Control menu is a submenu of the Debug menu.
Menu command | Keystroke | Description |
Source Mode | Ctrl+T, S | Switches the debugger into Source Debugging mode where code is stepped a statement at a time. |
Interleaved Mode | Ctrl+T, I | Switches the debugger into Interleaved Debugging mode where code is stepped one instruction at a time and source code is intermixed with the generated assembly code. |
Assembly Mode | Ctrl+T, A | Switches the debugger into Assembly Debugging mode where code is stepped one instruction at a time with a simple disassembly of memory. |
Toggle Debug Mode | Ctrl+F11 | Toggles between Source Debugging and Interleaved Debugging modes. |
Enable Interrupt Processing | Ctrl+T, N | Enables global interrupts in the processor by writing to the appropriate register. |
Disable Interrupt Processing | Ctrl+T, X | Disables global interrupts in the processor by writing to the appropriate register. |
Start Cycle Counter | Restarts the cycle counter after it has been paused. | |
Pause Cycle Counter | Pauses the cycle counter so that it does not incremement and count cycles even though code executes. | |
Reset Cycle Counter | Resets the cycle counter to zero. |