Rotation seems to constrain the register to a 32(31) bit value
Rotating left is equiv to shifting the bits left and wrapping around the remaining bits
0000 0000 0000 0000 0000 0000 0000 0001 = 1
1000 0000 0000 0000 0000 0000 0000 0000 = 2,147,483,648 (note it doesn't modify the sign bit)
rotating right shifts 1 to 2 billion
rotating left would make 1 equal to 2
hopefully that answers your question, feel free to jump in the discord if you need more info.
https://discord.gg/DNZeM5Fc