Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 7 51
Chapter 2 Program Instructions
CONT
Field of Application
Statement for resuming execution of a program that has been interrupted
by means of a STOP, BREAK, or DBBREAK statement.
Syntax CONT
Remarks
The CONT statement may be used to resume program execution after a
STOP, BREAK, or DBBREAK statement has been executed. Execution
continues at the point where the break happened with the STDIO
settings restored.
CONT is usually used in conjunction with DBBREAK or STOP for
debugging. When execution is stopped, you can examine or change the
values of variables using direct mode statements. You may then use
CONT to resume execution. CONT is invalid if the program has been
editied during the break.
It is also possible to resume execution at a specifi ed program line using a
GOTO statement in the immediate mode.
Example
10 A%=100
20 B%=50
30 IF A%=B% THE GOTO QQQ ELSE STOP
40 GOTO 30
50 QQQ:PRINT "Equal"
Ok
RUN
Break in line 30
Ok
PRINT A%
100
Ok
PRINT B%
50
Ok
B%=100
OK
CONT
Equal
Ok