boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

05-int-atoms.M1pp (283B)


      1 # parse_int_token coverage: decimal (+/-), 0x hex (lower/upper),
      2 # multi-digit values, and the high-bit wrap that the oracle inherits
      3 # from strtoull casting to i64.
      4 
      5 $((+ 0))
      6 $((+ 42))
      7 $((+ -7))
      8 $((+ 1000000))
      9 $((+ 0xff))
     10 $((+ 0xFF))
     11 $((+ 0xDEADBEEF))
     12 $((+ 0x8000000000000000))
     13 END