<< Previous | Next >>

ADC A,r     Add With Carry     Rabbit 2000/3000/3000A Instruction
Opcode
Instruction
Clocks
Operation
---- ADC A,r
2
A = A + r + CF

8F

ADC A,A

2

A = A + A + CF

88

ADC A,B

2

A = A + B + CF

89

ADC A,C

2

A = A + C + CF

8A

ADC A,D

2

A = A + D + CF

8B

ADC A,E

2

A = A + E + CF

8C

ADC A,H

2

A = A + H + CF

8D

ADC A,L

2

A = A + L + CF


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

Description

A is summed with the C flag and with r (any of the 8-bit registers A, B, C, D, E, H, or L). The result is stored in A.

The opcodes for these instructions are different than the same instructions in the Rabbit 4000.


<< Previous | Next >>