This is a C implementation of my original StackVM which is written in Crystal. It serves as a way of learning C, while learning more and more about virtual machines in general.
git clone https://github.com/KCreate/c-stackvm
make vm
bin/vm
Keep in mind, this repository only contains the virtual machine. To generate an executable for it, you will need the assembler from my original repository written in Crystal.
bin/vm myprogram.bc
- Fork it ( https://github.com/KCreate/c-stackvm/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
- KCreate Leonard Schuetz - creator, maintainer