SBC A,n

Operation

A <- A - n - CY

Mnemonic

SBC

Operands

A,n

b7b6b5b4b3b2b1b0
1 1 0 1 1 1 1 0$DE
n

Description

The n integer along with the Carry Flag (C in the F Register) is subtracted from 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 borrow from bit 4, otherwise it is reset.
P/Vis set if overflow, otherwise it is reset
Nis set.
Cis set if borrow, otherwise it is reset.

Example

If the Accumulator contains $23 and the Carry Flag is set then upon the execution of

	SBC	A,$10

the Accumulator contains $12.