r/s | stop the program
execution. A subsequent press of the program button will
begin execution where it left off. |
Pause | Update the display and will pause
for 1 second, after which processing will continue
automatically. Longer pauses can be achieved by simply
adding more "pause" commands. |
Goto | cause the current program execution step
to move to the step with the defined label. |
Gosub | cause the current program execution step
to move to the step with the defined label, but upon
encountering a "Rtn" command the program execution step will
return to this original "Gosub" command line. |
Rtn | return to program execution step to the
calling "Gosub" step. If no "Gosub" step had been called
then the program will return to the first step and will
stop. |
Prompt | pause the program while a (user defined)
dialog is displayed. The dialog will allow the user to
enter a value, and upon confirmation ("OK" button) that value
will be copied to the x register immediately before program
execution resumes. Pressing the "Cancel" button will
halt the program. |
Message | pause the program while a (user defined)
dialog is displayed. This dialog does not prompt the user
for any value. |
Display | update the main display but will not
pause the program execution. |