NOT

By Vesper Vei
1 minute read

Table of Contents

  1. NOT (not)
    1. Basic function
    2. Instruction execution process
    3. Instruction format
    4. Behavioral characteristics
    5. Common uses

NOT (not)

Basic function

NOT performs a bitwise inversion on the operand: dest = ~dest.
That is, all bits 0 → 1, and 1 → 0.

Instruction execution process

Instruction format

not r/m8
not r/m16
not r/m32
not r/m64

Behavioral characteristics

Common uses



Relationship Graph

Loading graph...