Lists of Special Commands
General Commands
Program Command Description Parameter Rng, Avail Variables
COPY ON Produces a hard copy of the screen on
a printer.
AQ6370C/AQ6373/AQ6375
Produces a hard copy of the screen to
file.
AQ6370D/AQ6373B
PRINTER FEED ** Feeds printer paper. AQ6370C/AQ6373/AQ6375
1 to 10 (1 step)
GOTO *** Makes a jump to line ***. 1 to 200 (1 step)
GOTO PROGRAM ** Makes a jump to program ** to run
it from the first line. After completing
running of program **, control returns
to the original program. However, if
there is an END command in program
**, return to the jump source is not
performed and the program ends.
When a program is executed using this
command, variables are not initialized.
WAIT *****S Makes a wait of **** seconds. 1 to 99999 (1 step)
PAUSE ’---56 chars---’ Pauses execution of a program and
causes a message window to appear.
This window displays a message and
an explanation of the CONTINUE
key. Pressing the CONTINUE soft key
closes the window and executes the
program. If a program is started via GP-
IB, no pause is made.
VARIABLE CLEAR Initializes all variables used in a
program.
END Ends a program.
INIT Initializes all parameters, but does not
clear variables.
@=VAL(@$) Converts the string in variable @ to
a numerical value an substitutes the
value into variable @.
@: E
1
, G, H, I, J, K, O
1
, P, Q, R, S,
T
1
, U
1
, V
1
, X, Y, Z
@$: A$, B$, C$, D$
BEEP ** Buzzer sounds for ** x 100 msec. 1 to 10 (1 step)
REM ’---56 chars---’ Defines a comment in the program list.
This command is not processed, and
the program proceeds to the next line.
AQ6370C/AQ6370D/AQ6375B
1: Generalized variables E, O, T, U, and V are valid only for the AQ6370C/AQ6370D/
AQ6375B.
Loop Control
Program Command Description Parameter Rng, Avail Variables
N=******** Substitutes a value into variable N. 1 to 99999999 (1 step)
N=@@@@@@ Copies the contents of variable
@@@@@ to variable N.
@@@@@: MODN, WDMCHN,
NFCHN, GONO, M
N-N-1;IF N<>0GOTO
***
Subtracts “1” from variable N and,
if the result is not “0,” makes a jump
toline ***.
1 to 200 (1 step)
M=******** Substitutes a value into variable M. 1 to 99999999 (1 step)
M=@@@@@@ Copies the contents of variable
@@@@@ to variable M.
@@@@@: MODN, WDMCHN,
NFCHN, GONO, N
M-M-1;IF M<>0
GOTO ***
Subtracts “1” from variable N and, if the
result is not “0,” makes a jump to line
***.
1 to 200 (1 step)
8.3 Program Function Commands