User`s guide
Debugging for DSP56800E
Command-Line Debugging
246
Targeting MC56F83xx/DSP5685x Controllers
exit
Use the exit debugging command to close the command-line debugging window.
Prototype
[ex]it
go
Use the go debugging command to start the program that you are debugging from the
current instruction.
Prototype
g[o] [ all | time_period ]
If you execute the go command interactively, the command returns immediately. The
target program starts to run.
Then you can either wait for the target program to stop executing (for example, on a
breakpoint) or type the stop debugging command to stop the execution of the target
program.
If you execute the go command in a script, the command-line debugger polls until the
debugger stops (for example, on a breakpoint) and then executes the next command in
the script. (If the command-line debugger continues polling indefinitely because the
debugging process does not stop, you can stop the script by pressing the Escape key.)
Table 8.17
shows examples of the go command.
Table 8.17 Debugging Command Examples: go
Example Description
go This command returns immediately. The program stops at the first
occurrence of a breakpoint. You also can use the stop debugging
command to break the program.