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