uvm icon indicating copy to clipboard operation
uvm copied to clipboard

Fun, portable, minimalistic virtual machine.

Results 6 uvm issues
Sort by recently updated
recently updated
newest added

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...

help wanted
proposal

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...

help wanted
good first issue
proposal

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...

proposal

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...

help wanted
good first issue

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...