Returns the low-order 8-bit value of a term.
[Function]
Returns the low-order 8-bit value of a term.
[Application example]
mov LOW(0xC08), r10 ; (1)
|
(1) | By executing a mov instruction, this operator returns the low-order 8-bit value "0x8" of the expression "0xC08".
Therefore, (1) in the above example can also be described as: mov 0x8, r10. |