65
POWER_ON
Purpose To determine whether to restart or resume the program upon powering on.
Syntax POWER_ON(N%)
Remarks “N%” can be 0 or 1.
0 Program Resume
1 Program Restart
Example
See Also AUTO_OFF, RESTART
RESTART
Purpose To restart the system.
Syntax RESTART
Remarks
This command will terminate the execution of the BASIC program and restart
it.
Example
HostCommand$ = READ_COM$(1)
…
IF HostCommand$ = “RESTART” THEN
RESTART
ELSE
See Also AUTO_OFF, POWER_ON