Reloads the user program.
RELOAD [/ARGUMENTS command-line-arguments] [/NEWARG command-line-arguments] [< filename] [> filename]
where:
In this example, the debugging session is restarted in the original evaluation environment, with all breakpoints preserved and without returning to the system level.
CodeWatch> RELOAD Command line : "primes" Reloading..ok Initial evaluation environment is PRIMES:(inactive) CodeWatch>
In this example, user program output is redirected to the file primes.out
CodeWatch> RELOAD > primes.out Reloading..ok Initial evaluation environment is PRIMES:(inactive) CodeWatch>
Description
The RELOAD command will reinitialize the user program while preserving any explicitly set breakpoints and any associated action lists. All breakpoint counters will be reset to zero.
A subsequent Continue or Step will execute the user program from the beginning.