User Manual Chapter 12
GFK-1742F Jan 2020
Local Logic Language Syntax 297
12.5.1 Operator BWAND
Performs a bitwise and of source1 and source2.
Syntax 1
destination:= source1 BWAND source2;
Syntax 2
IF source1 BWAND source2 THEN
The BWAND operator syntax has these parts:
Remarks
Syntax 1 is used for assignment; syntax 2 is used in a conditional evaluation.
12.5.2 Operator BWOR
The BWOR operator returns the bitwise or on source1 and source2.
Syntax 1
destination:= source1 BWOR source2;
Syntax 2
IF source1 BWOR source2 THEN
The BWOR operator syntax has these parts:
Remarks
Syntax 1 is used for assignment, syntax 2 is used in a conditional evaluation.