Binary constants

To specify a binary number, prefix the number with 0B or Ob

To specify a binary number, prefix the number with 0B or Ob.

ori 3,6,0b0010_0001
# OR (the decimal value) 33 with the
# contents of GPR 6 and put the result
# in GPR 3.