XOR s

Exclusive or accumulator and s.
Function: A <- A -\/- s
 
Format: s: may be r, n, (HL), (IX + d), or (IY + d)
 
r  
 
1010 1rrr
 
n  
 
1110 1110
 
byte 1: EE
 
nnnn nnnn
 
byte 2: immediate data
 
(HL)  
 
1010 1110
 
AE
 
(IX + d)  
 
1101 1101
 
byte 1: DD
 
1010 1110
 
byte 2: AE
 
dddd dddd
 
byte 3: offset data
 
(IY + d)  
 
1111 1101
 
byte 1: FD
 
1010 1110
 
byte 2: AE
 
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 accumulator and the specified operand s are exclusively 'or'ed, and the result is stored in the accumulator. s is defined in the descriptions of the similar 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:
XOR  r
r:ABCDEHL
AFA8A9AAABACAD
 
Flags:
 
Example:
XOR  B1H

OBJECT CODE
Before:
 
After: