CP s

Compare opearand s to accumulator.
Function: A - s
 
Format: s: may be r, n, (HL), (IX + d), or (IY + d)
 
r  
 
10111rrr
 
n  
 
1111 1110
 
byte 1: FE
 
nnnn nnnn
 
byte 2: immediate data
 
(HL)  
 
1011 1110
 
BE
 
(IX + d)  
 
1101 1101
 
byte 1: DD
 
1011 1110
 
byte 2: BE
 
dddd dddd
 
byte 3: offset data
 
(IY + d)  
 
1111 1101
 
byte 1: FD
 
1011 1110
 
byte 2: BE
 
dddd dddd
 
byte 3: offset data
 
r may be any one of:
A
111
B
000
C
001
D
010
E
011
H
100
L
101
Description: The specified operand is subtracted from the accumulator, and the result is discarded. s is defined in the descriptions of the ADD instructions.
 
Data Flow:
 
Timing:
s: M cycles: T states: usec
@ 2 MHz:
r
n
(HL)
(IX + d)
(IY + d)
1
2
2
5
5
4
7
7
19
19
2
3.5
3.5
9.5
9.5
 
Addressing Mode: r: implicit; n: immediate; (HL): indirect; (IX + d), (IY+d): indexed.
 
Byte Codes:
CP   r
r:ABCDEHL
BFB8B9BABBBCBD
 
Flags:
 
Example:

OBJECT CODE
Before:
 
After: