Ror is the rotate right operator. Each bit in the left operand is shifted right by the number of bits specified in the right operand. Bits in the right-most positions of the operand are rotated to the left-most bits of the operand.

 

Example

    Sreg <= Sreg ror 2;

 

LRM

    7.2.3

 

See also

image\diamond.gif  Objects, Data Types and Operators