| |
Logical NOT
86/88 |
Y |
186 |
Y |
286 |
Y |
386 |
Y |
486 |
Y |
NOT destination |
Ovfl |
N |
Dir |
N |
Int |
N |
Trap |
N |
Sign |
N |
Zero |
N |
Aux |
N |
Prty |
N |
Carry |
N |
NOT inverts each bit of its operand (that is, forms the one's
complement). The operand can be a word or byte.
NOT Instruction Logic
Destination Result
0 1
1 0
------------------------------------ Timing ----------------------------------
OpCode Instruction 386 286 86
F6/2 NOT r/m8 2/6 2/7 3/16+EA
F7/2 NOT r/m16 2/6 2/7 3/16+EA
F7/2 NOT r/m32 2/6
------------------------------------ Logic -----------------------------------
destination = NOT(destination)
See Also NEG AND OR XOR |