DADiSP Worksheet Functions > Function Categories > Debugging > DBCONT
Starts or continues the debugger.
DBCONT
Nothing.
dbstop myfunc
dbcont
myfunc(10)
dbstop 7
dbcont
sets a breakpoint in the SPL routine named myfunc and starts debugging. The myfunc routine is then called and a new breakpoint is set at line 7. DBCONT continues the debugger until line 7 is reached or the routine exits.
Use DBCONT to start the debugging process. Use DBSTEP or DBCONT to resume execution after a breakpoint has been reached. Use DBSTATUS for information on the current breakpoint. Use DBQUIT to exit debugging.
Any DADiSP command or function can be executed once a breakpoint has been reached.