Complete 8086 instruction set
[DEC]
DEC
Operands: REG memory Decrement. Algorithm: operand = operand - 1 Example: MOV AL, 255 ; AL = 0FFh (255 or -1) DEC AL ; AL = 0FEh (254 or -2) RET Flags: Z S O P A r r r r r CF - unchanged!