SHR
PROGRAM SHR_DEMO
VAR
WORD1,WORD2: WORD;
INT1: INT;
END_VAR
WORD2:= SHR(IN:=WORD1,N:=INT1);
END_PROGRAM
The function moves the bit pattern from left to right. The moved bits are set to zero.
Input | Type | Description |
---|---|---|
IN | ANY_BIT | Input value |
N | ANY_INT | Number of bits to move the value to right |
Output | Type | Description |
---|---|---|
=> | ANY_BIT | Output value |