Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom Debugger Guide - use the go command to start or continue program execution. execution then http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Use the Go command to start or continue program execution.  Execution then
resumes at the specified address or at the location defined by the current
contents of the CS:IP or CS:EIP register pair.  The format of the Go command
is:


     Go [/Until] [/Keep] [/Noflip] [[<start>,]<stop>]

The options are:

/Until
    skips breakpoints until the specified stop address is reached.

/Keep
    allows you to keep a previous temporary breakpoint.  If you keep the
    previous breakpoint you cannot create a new one.

/Noflip
    keeps the debugger from flipping to the application's screen.

<start>
    the <address> at which to start execution (optional).

<stop>
    the <address> at which to stop execution.

Some examples of the Go command are:

This command will resume execution until function "foo" is executed without
flipping to the application screen:


     go /noflip foo

This command starts execution at "foo" and runs until "bar" is executed.


     go foo,bar

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson