AND n

Operation

A <- A & n

Mnemonic

AND

Operands

n

b7b6b5b4b3b2b1b0
1 1 1 0 0 1 1 0$E6
n

Description

A logical AND operation is performed between the n integer and the contents of the Accumulator, and 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 set.
P/Vis reset if overflow, otherwise it is reset
Nis reset.
Cis reset.

Example

If the Accumulator contains $C3 (1100 011), then upon the execution of

	AND	$7B

the Accumulator contains $43 (0100 0011).