umx_asm

UMX virtual machine assembly compiler
git clone git://bsandro.tech/umx_asm
Log | Files | Refs | README | LICENSE

README (430B)


      1 UMX bytecode assembler/compiler.
      2 Pure Go, doesn't have any external dependencies.
      3 See https://bsandro.tech/git/umx repository for the C99 VM.
      4 
      5 How to build:
      6 $ go build ./cmd/umas
      7 
      8 Tips:
      9 To see debug data on compilation enable DEBUG environment variable:
     10 $ DEBUG=1 ./umas sample.ums
     11 
     12 To view/validate compiled bytecode:
     13 $ xxd -b -g4 -c 4 sample.um
     14 
     15 
     16 BSD 2-clause license because apparently all code should have something of sorts.