The binary shift operators are << and >>.
Shift left: <operand> << <count> Shift right: <operand> >> <count>
The << operator shifts its left operand left by the number of bits specified in the right operand.
The >> operator shifts its left operand right by the number of bits specified in the right operand.
The operands can be any expression evaluating to an absolute expression.
See the following listing for an example of the binary shift operators.
$25 << 2 ; shift left (= $94) $A5 >> 3 ; shift right(= $14)