shr

Binary right shift, this command work on the binary representation of number , it shift bits by the indicated amount

Syntax:
result = number shr amount

Example:
for n=1 to 8
    print 256 shr n
next