Bitwise SHIFT RIGHT operator

The >> operator is a binary (infix) bitwise SHIFT RIGHT operator. The >> operator expects an integer right hand operand and an integer left hand operand. If either operand is a string, it will be automatically coerced to an integer before the SHIFT RIGHT operator is applied.

NOTE:

The two '>' characters in the SHIFT RIGHT operator must occure in the assembler source without and interveaning blanks or they will be interpreted as two individual GREATER THAN operators.
syntax:

	<left_expr> >> <right_expr>

<left_expr> and <right_expr> are refered to as the left and right operand respectively and may themselves be simple values or complex expressions.

e.g.
	0x1234 >> 4			yields 0x0123
	0x1234 >> 2			yields 0x048D

	(0x120400 + 0x005200) >> 8	yields 0x1256