XOR n

Operation

A <- A ^ n

Mnemonic

XOR

Operands

n

b7b6b5b4b3b2b1b0
1 1 1 0 1 1 1 0$EE
n

Description

A logical exclusive-OR operation is performed between the n integer and the contents of the Accumulator, the results are stored in the Accumulator.

Condition Bits Affected

Sis set if result is negative, otherwise it is reset.
Zis set if result is 0, otherwise it is reset.
His reset.
P/Vis set if parity even, otherwise it is reset
Nis reset.
Cis reset.

Example

If the Accumulator contains $96 (1001 0110), then upon the execution of

	XOR	$5D

the Accumulator contains $CB (1100 1011).