!
Obtains the logical negation by each bit.
[Function]
Negates the value of the term of an expression on a bit-by-bit basis and returns the result.
[Application example]
mov !0x3, r10 ; (1)
(1)
Logical negation is performed on "0x3" as follows: 0xFFFFFFFC is returned.