The bits of the source register (snd) are rotated (circular shifted) to the right by either
Here is one example using assembly code :
mov 1101101101101101b r1 ror 2 r1After the last instruction, r1=0111011011011b. All the bits are preserved but are in different positions.