IAI America ASEL User Manual
Page 122

Part 2 Programs
Chapter 3 Explanation of Commands
100
Part 2 Programs
z
MOD (Remainder)
Command, declaration
Extension condition
(LD, A, O, AB, OB)
Input condition
(I/O, flag)
Command,
declaration
Operand 1
Operand 2
Output
(Output, flag)
Optional
Optional
MOD
Variable
number
Data
ZR
[Function]
Assign, to the variable specified in 1, the remainder obtained by dividing the content of
the variable specified in operand 1 by the value specified in operand 2.
The output will turn ON when the operation result becomes 0.
(Note)
A MOD command is used with integer variables.
[Example 1]
LET
1
7
Assign 7 to variable 1.
MOD
1
3
Obtain the remainder of dividing the content of
variable 1 (7) by 3.
1 (7y3=2 with a remainder of 1) will be assigned to
variable 1.
[Example 2]
LET
1
7
Assign 2 to variable 1.
LET
3
3
Assign 3 to variable 3.
MOD
1
*3
Obtain the remainder of dividing the content of
variable 1 (7) by the content of variable 3 (3).
1 (7y3=2 with a remainder of 1) will be assigned to
variable 1.