Bit-shift instructions
98
Part II IEC Instructions
ROR
Rotate N bits the right
To add an enable input and enable output to the instruction, select [With EN/ENO] from the
"Instructions" pane (LD, FBD or IL editor). To reuse an instruction select "Recently used" from the
context menu or press <Ctrl>+<Shift>+<v> in the programming window.
0
00
3
DT0
0001
0010
11 8
0011
10
0
15
..
12
.. ..
74
..
DT0
010 0001
11 8
0010
0011
30
15
..
12
.. ..
74
..
(n = 4 bits)Source register
Target register
Bit
Bit
PLC types
Availability of ROR (see page 1330)
Data type I/O Function
1st input input value
2nd input number of bits by which the input value is rotated to the right
ANY_BIT
output as input result
The number of steps may vary depending on the PLC and parameters used, see
also Table of Code Intensive Instructions in the online help.
Description
ROR rotates a defined number (N) of bits to the right.
Data types
Example
In this example, the same POU header is used for all programming languages. For an example
using IL (instruction list), please refer to the online help.
POU header
All input and output variables used for programming this function have been declared in the POU
header.
This example uses variables. You can also use a constant for the input variable.
Body
The first N bits (here N = 4) of source_register are right-rotated. The result will be written into
target_register.