| << Previous | Next >> | |
| |
RRC b,BCDE
RRC b,JKHL Rotate Right Affect Carry Rabbit 4000 Instruction
-- RRC b,BCDE 4 (2,2) BCDE = {B[7],BCDE[31,1]}
CF = E[0]
b = b - 1
repeat while b != 0-- RRC b,JKHL 4 (2,2) JKHL = {J[7],JKHL[31,1]}
CF = L[0]
b = b - 1
repeat while b !=0
Description
Rotates to the right the data in BCDE or JKHL. Each bit in the register moves to the next lowest-order bit position (bit 31 moves to bit 30, etc.) while bit 0 moves to both bit 31 and the C flag.
| | |
| << Previous | Next >> |