The not instruction implements a NOT operation on the argument.
Synopsis
not(type.dst)
Description
The not instruction performs a 1's complement operation on the argument.
Example
In the following example, r.3 is changed to its 1's complement.
not(r.3)
In the following example, the bits set in FLAG are cleared in r.3.
load(r.2,FLAG)
not(r.2)
and(r.3,r.2)