2
0

shr.bmx 130 B

123456789
  1. Rem
  2. Shr is a binary operator that performs the shift to right function.
  3. End Rem
  4. b=-1
  5. for i=1 to 32
  6. print bin(b)
  7. b=b shr 1
  8. next