| |||
| Home > DS-5 Debugger commands > DS-5 Debugger commands listed in alphabetical order > set step-mode | |||
This command controls the default behavior of the step and steps commands.
set step-mode { step-over | stop | step-until-source}
Where:
step-overIf the instruction is a function call then the debugger performs a step-over. Otherwise, it stops. This is the default.
stopThe debugger stops when execution reaches an address with no source.
step-until-sourceThe debugger performs steps until it reaches source. To speed up the execution, the debugger might use abstract interpretation and break or run until the line of source is reached.