Debugger Engine Commands
Debugger Commands
789
Microcontrollers Debugger Manual

G

The G command starts code execution in the emulated system at the current address in the
program counter or at the specified address. You can therefore specify the entry point of
your program, skipping execution of the previous code.
Usage
G [address]
When no address is entered, the address in the program counter is not altered and
execution begins at the address in the program counter.
Alias
GO
Components
Debugger engine.
Example:
G 0x8000
Program execution is started at 0x8000. RUNNING is displayed in the status bar.
The application runs until a breakpoint is reached or you stop the execution.

GO

The GO command starts code execution in the emulated system at the current address in
the program counter or at the specified address. You can therefore specify the entry point
of your program, skipping execution of previous code.
Usage
GO [address]
When no address is entered, the address in the program counter is not altered and
execution begins at the address in the program counter.
Alias
G