User Manual Chapter 12
GFK-1742F Jan 2020
Local Logic Language Syntax 298
12.5.3 Operator BWXOR
The BWXOR operator returns the bitwise exclusive or of source1 and source2.
Syntax 1
destination: = source1 BWXOR source2;
Syntax 2
IF source1 BWXOR source2 THEN
The BWXOR operator syntax has these parts:
Remarks
Syntax 1 is used for assignment; syntax 2 is used in a conditional evaluation.
12.5.4 Operator BWNOT
The BWNOT operator returns the one’s complement of the source parameter.
Syntax 1
destination:= BWNOT source;
Syntax 2
IF BWNOT source THEN
The BWNOT operator syntax has these parts:
Remarks
Syntax 1 is used for assignment; syntax 2 is used in a conditional evaluation.