Chapter 8 Logic Instructions
Precautions for Correct Use
The input variables are not allowed to omit. An error will occur during the compiling of the software if
any input variable is omitted. But the output variable is allowed to omit.
The value of Out is the same as In when the value of Num is 0.
The number of bits by which the bits of data are rotated to the right is equal to the value of Num
MOD In when the value of Num is greater than the number of bits of the value of In.
For example, if the data type of In is BYTE, the value of out when Num=USINT#1 is the same for
when Num=USINT#9.
Programming Example
The data types of ROR_In and ROR_Num are UINT and USINT respectively and their values are
300 and 3 respectively. The data type of Out1 is BYTE and the value of Out1 is 32805 when
ROR_EN is TRUE.
The variable table and program
ROR_EN
BOOL
TRUE
Illustration of the example
10101101
Bit0
Bit7
In
Out
Num=2, shifted by two bits right
Bit0
Bit7
10
110110
1
ROR
EN ENO
In Out
ROR_EN
ROR_In Out1
NumROR_Num
0
1
0
11
0 00
1
Bit0Bit15
ROR_In
Out1
1
0000000
0100000 0 00 10001
Bit0Bit15
ROR_Num=3 rotated by three bits to the right,
8-131