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