An open API service indexing awesome lists of open source software.

https://github.com/irwin1985/vmlite

An educational Virtual Machine for Arithmetic Calculations.
https://github.com/irwin1985/vmlite

bytecode-compiler bytecode-interpreter virtual-machines

Last synced: 12 days ago
JSON representation

An educational Virtual Machine for Arithmetic Calculations.

Awesome Lists containing this project

README

          

# vmlite

This little sample project will show you the core concepts hidden behind the **"Stack Based Virtual Machines"**. I'm a dummy programmer thus I have to keep myself in a RPL *(Read, Practice, Loop)* loop until I fully understand the concept.

These are my source of inspiration:

- [Writing Interpreters and Compilers for the Raspberry Pi Using Python by Anthony J. Dos Reis](https://amz.run/4ipU)
- [Compiler/virtual machine interpreter by RosettaCode](http://rosettacode.org/wiki/Compiler/virtual_machine_interpreter)
- [Writing A Compiler In Go by Thorsten Ball](https://amz.run/4ipX)