The binary bitwise operators are &, |, and ^.
Bitwise AND:
Bitwise OR:
<operand> | <operand>
Bitwise XOR:
<operand> ^ <operand>
The & operator performs an AND between the two operands on the bit level.
The | operator performs an OR between the two operands on the bit level.
The ^ operator performs an XOR between the two operands on the bit level.
The operands can be any expression evaluating to an absolute expression.
See the following listing for an example of the binary bitwise operators
$E & 3 ; = $2 (%1110 & %0011 = %0010) $E | 3 ; = $F (%1110 | %0011 = %1111) $E ^ 3 ; = $D (%1110 ^ %0011 = %1101)