Bitwise Operators: Shift Right

Bitwise shift right; moves the bits to the right, discards the far right bit and if unsigned assigns 0 to the left most bit, otherwise sign extends.

Example - Result will equal $21
(= Result (>> $85 2))