| << Previous | Next >> | |
| |
SLA b,BCDE
SLA b,JKHL Shift Left Arithmetic Rabbit 4000 Instruction
---- SLA b,BCDE 4 (2,2) BCDE = {BCDE[30,0],0}
CF = B[7]
b = b - 1
repeat while b!=0---- SLA b,JKHL 4 (2,2) JKHL = {JKHL[30,0],0}
CF = J[7]
b = b - 1
repeat while b!=0
Description
Arithmetically shifts to the left the bits of BCDE or JKHL. Bits 0 through 30 are each shifted to the next highest-order bit position (bit 0 moves to bit 1, etc.). Bit 31 is shifted to the C flag. Bit 0 is reset.
| | |
| << Previous | Next >> |