ADD A,n

Operation

A <- A + n

Mnemonic

ADD

Operands

A,n

b7b6b5b4b3b2b1b0
1 1 0 0 0 1 1 0$C6
n

Description

The n integer is added to 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 if carry from bit 3, otherwise it is reset.
P/Vis set if overflow, otherwise it is reset
Nis reset.
Cis set if carry from bit 7, otherwise it is reset.

Example

If the Accumulator contains $23, then upon the execution of

	ADD	A,$33

the Accumulator contains $56.