| |||
| Home > RealView Debugger Commands > Alphabetical command reference > RUN | |||
The RUN command starts execution using a specific mode, or sets the default mode used by the GO command.
RUN
RUN ,setdefault
RUN [,setdefault],{debug|normal}
RUN [,setdefault],{clock|benchmark}
RUN [,setdefault],{free|user}
where:
setdefaultSet the default mode for the GO command to the mode specified by this command, but do not start execution.
If no mode is specified, then the default mode (debug or normal)
is set.
debug | normalRun with breakpoints active. This is the default mode.
clock | benchmarkRun with breakpoint timing hardware enabled. This mode is only available on some targets.
free | userRun
at full speed, with breakpoints disabled. Depending on the target, hardware,
this might not be any faster than normal mode.
If supported by the target, the RUN command starts execution using a specific mode, or sets the default mode used by the GO command.
If you supply no parameters, RUN displays the current mode.
The following examples show how to use RUN:
run,setdefault,normalSet the default run mode to normal,
so that the next GO command for this connection
runs the target in the normal way.
run,freeRun the target with breakpoints disabled.