Complete 8086 instruction set
[SBB]
SBB
Operands: REG, memory memory, REG REG, REG memory, immediate REG, immediate Subtract with Borrow. Algorithm: operand1 = operand1 - operand2 - CF Example: STC MOV AL, 5 SBB AL, 3 ; AL = 5 - 3 - 1 = 1 RET Flags: C Z S O P A r r r r r r