uvm
uvm copied to clipboard
Fun, portable, minimalistic virtual machine.
This adds metadata constructed in the assembler and passed to the VM which provides information about instructions that can be used to improve error messages with line and column info....
I'm in the process of designing a simple TCP networking API that would make it possible to create servers running in UVM. This API works with callbacks that tell you...
UVM Wishlist
This is a list of potentially fun things to work on that would be useful for UVM and its software ecosystem. An easy way that you can contribute to UVM...
This is not the highest priority, but something to think about. Eventually, I think that programs should be able to store metadata. This should probably just be a third segment...
To help promote UVM, it would be helpful to gather a collection of nice screenshots of the different apps we create. We could include those in the [`/media`](https://github.com/maximecb/uvm/tree/main/media) directory, in...
Prefix increment/decrement operator seems to be working fine but postfix increment/decrement operator throws error. Code to reproduce ``` int i =0; while(i < 5) { i++; } ``` This behaviour...