Typecast operator. The result is a memory reference with the value of the expression following the operator and
the type of the expression in front of the operator.
* Multiplication. Both expressions must be absolute immediate values, and the result is an absolute immediate
value.
/ Integer division. Both expressions must be absolute immediate values, and the result is an absolute immediate
value.
MOD
Remainder after integer division. Both expressions must be absolute immediate values, and the result is an
absolute immediate value.
SHL
Logical shift left. Both expressions must be absolute immediate values, and the result is an absolute immediate
value.
SHR
Logical shift right. Both expressions must be absolute immediate values, and the result is an absolute immediate
value.
NOT
Bitwise negation. The expression must be an absolute immediate value, and the result is an absolute immediate
value.
AND
Bitwise AND. Both expressions must be absolute immediate values, and the result is an absolute immediate value.
OR
Bitwise OR. Both expressions must be absolute immediate values, and the result is an absolute immediate value.
XOR