81
Sequence Control Instructions
Section 3-3
CONDITIONAL
JUMP
CJP
510
Output
Required
CONDITIONAL
JUMP
CJPN
511
Output
Not required
MULTIPLE JUMP
JMP0
515
Output
Required
MULTIPLE JUMP
END
JME0
516
When the execution condition for JMP0(515) is OFF, all instructions
from JMP0(515) to the next JME0(516) in the program are processed
as NOP(000). Use JMP0(515) and JME0(516) in pairs. There is no
limit on the number of pairs that can be used in the program.
Output
Not required
Instruction
Mnemonic
Code
Symbol/Operand Function Location
Execution condition
CJP(510)
N
N: Jump number
The operation of CJP(510) is the basically the opposite of JMP(004).
When the execution condition for CJP(510) is ON, program execution
umps directly to the first JME(005) in the program with the same jump
number. CJP(510) and JME(005) are used in pairs.
Execution
condition OFF
Execution
condition ON
Instructions
jumped
Instructions in this section
are not executed and out-
put status is maintained.
The instruction execution
time for these instructions
is eliminated.
Instructions
executed
CJPN(511)
N
N: Jump number
The operation of CJPN(511) is almost identical to JMP(004).
When the execution condition for CJP(004) is OFF, program execution
umps directly to the first JME(005) in the program with the same jump
number. CJPN(511) and JME(005) are used in pairs.
Execution
condition ON
Execution
condition OFF
Instructions
executed
Instructions
jumped
Instructions in this section
are not executed and out-
put status is maintained.
The instruction execution
time for these instructions
is eliminated.
JMP0(515)
Instructions
jumped
Instructions
executed
Execution
condition b ON
Execution
condition b OFF
Jumped instructions
are processed as
NOP(000). Instruction
execution times are the
same as NOP(000).
Instructions
executed
Instructions
jumped
Execution
condition a OFF
Execution
condition a ON
When the execution condition for JMP0(515) is OFF, all instructions
from JMP0(515) to the next JME0(516) in the program are processed
as NOP(000). Use JMP0(515) and JME0(516) in pairs. There is no
limit on the number of pairs that can be used in the program.
JME0(516)