<< Previous | Next >>

RL bb,JKHL     Rotate Left Affect Carry     Rabbit 4000/5000 Instruction

Opcode
Instruction
Operation
---- RL bb,JKHL   {CF,JKHL} = {JKHL,CF}
  bb = bb - 1
repeat while bb != 0
FD 68 RL 1,JKHL   {CF,JKHL} = {JKHL,CF}
  bb = bb - 1
repeat while bb != 0
FD 69 RL 2,JKHL   {CF,JKHL} = {JKHL,CF}
  bb = bb - 1
repeat while b != 0
FD 6B RL 4,JKHL   {CF,JKHL} = {JKHL,CF}
  bb = bb - 1
repeat while bb != 0

8-Bit Access
16-Bit Unaligned
16-Bit Aligned
Rabbit 4000
4
n/a
n/a
Rabbit 5000
4
4
2

Flags ALTD IOI/IOE
S
Z
L/V
C
F
R
SP
S
D
·
·
L
·
·
·

Description

Rotates JKHL to the left with the C flag. Each bit in the register moves to the next highest-order bit position (bit 0 moves to bit 1, etc.) while the C flag moves to bit 0 and bit 31 moves to the C flag. This operation happens bb number of times. See Figure 2 for an illustration.


Rabbit Instructions << Previous | Next >> rabbit.com