I disassembled some code and i get this function call , i guess from a rcr
instruction , what is it really doing ?
__RCR__(v8, v9)
I disassembled some code and i get this function call , i guess from a rcr
instruction , what is it really doing ?
__RCR__(v8, v9)
http://www.c-jump.com/CIS77/ASM/Assembly/A77_0420_rotate_with_carry.htm
RCR doing a rotate to the right and put on the left bit the value from Carry flag, The overridden bit will be in the Carry flag
AL = 01010100 CF = 1 ROR AL, 1;AL will be 10101010 and CF 0