lem-n / cvm

Basic stack machine.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CVM

A pretty basic virtual machine executing bytecode instructions from given file.

Example printing 110 by adding 99 and 11 to the console.

iconst 11
iconst 99
iadd
iprint
halt

Run with: cvm <filepath> [options...]
and check options with cvm --help

About

Basic stack machine.

License:Apache License 2.0


Languages

Language:C 98.9%Language:CMake 1.1%