The debugger provides you with complete control over program
execution with features like conditional execution and single-stepping (including
single-stepping into or over function calls). You can set or clear a breakpoint with
a click of the mouse. You can define a memory map that identifies the portions of
target memory that the debugger can access. The debugger can execute commands form a
batch file, providing you with an easy method for entering often-used command
sequences. Additional Debugger features include:
- Multilevel debugging allows you debug both C and Assembly language
code.
- Analysis Module that monitors the operations of your target system.
This expands your debugging capabilities beyond simple software breakpoints.
- A new fully configurable Graphical User Interface that reduces
learning time and eliminates the need to memorize complex commands.
- Comprehensive data displays. You can easily create windows for
displaying and editing the values of variables, arrays, structures, pointers-any kind of
data-in their natural format.
- Dynamic Profiling capabilities that show where to focus development
time by identifying time-consuming sections of the program.
- On-screen editing so that you can change data values displayed in an
window-just click and type.
- Debugger automatically updates information on the screen,
highlighting the changed values.
|