Installation guide
72 Programming Commands
7.4 Alphabetical List of Programming Commands with Syntax and Examples
& Bitwise Operator
ACTION: Returns the bitwise AND of the expressions
PROGRAM SYNTAX: result=expression1 & expression2
REMARK: A 24 bit binary AND is performed on the two arguments.
EXAMPLES: X=10 & 2
0000 0000 0000 0000 0000 1010 (10)
0000 0000 0000 0000 0000 0010 (2)
0000 0000 0000 0000 0000 0010 (result= 2)
returns a 2 to X.
| Bitwise Operator
ACTION: Returns the bitwise inclusive OR of the expressions.
PROGRAM SYNTAX: result=expression1 | expression2
REMARK: A 24 bit binary OR is performed on the two arguments.
EXAMPLES: X=10 | 4
0000 0000 0000 0000 0000 1010 (10)
0000 0000 0000 0000 0000 0100 (4)
0000 0000 0000 0000 0000 1110 (result= 14)
returns a 14 to X.
^ Bitwise Operator
ACTION: Returns the bitwise eXclusive OR of the expression
PROGRAM SYNTAX: result=expression1 ^ expression2
REMARK: A 24 bit binary eXclusive OR is performed on the two arguments.
If a binary bit in expression2 is a 1 the resulting bit will be inverted in
expression1.
EXAMPLES: X= 10 ^ 6
0000 0000 0000 0000 0000 1010 (10)
0000 0000 0000 0000 0000 0110 (6)
0000 0000 0000 0000 0000 1100 (result= 12)
returns a 12 to X.










