I'm having trouble understanding what exactly ror and shl do in assembly. I see the definitions, e.g. ror: rotates bits to the right and back into high-order bit on the left.
but what does that mean? I just can't wrap my head around it. like if
mov eax, 0x12345678
mov ebx, eax
ror ebx, 16
what happens?