INCLUDE(<integer-variable>, <bit>)
Set bit <bit> within <integer-variable>.
This is equivalent to Delphi's include statement that applies only to a SET.
PMP may apply this procedure to any integer variable that is assimilated to a SET.
<integer-variable>:
Any integer variable or SFR.
<bit>:
Bit number constant 0..n applicable to <integer-variable>, or NEW! (V2.1): dynamic given by any expression.
VAR
TheWord: WORD;
BitPos: BYTE;
…
INCLUDE(TheWord, BitPos);
…