Complete 8086 instruction set
[NOT]
NOT
Operands: REG memory Invert each bit of the operand. Algorithm: if bit is 1 turn it to 0. if bit is 0 turn it to 1. Example: MOV AL, 00011011b NOT AL ; AL = 11100100b RET Flags: C Z S O P A
unchanged