-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathREADME
More file actions
18 lines (13 loc) · 712 Bytes
/
Copy pathREADME
File metadata and controls
18 lines (13 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SmallVM is just that, a small virtual machine with focus on educating others about virtual machines.
It is written in ANSI C and is fairly documented.
Features:
* Portable - Builds on almost any platform with an ANSI C compiler
* Full instruction set - Includes mathematical instructions, memory and register modifiers, jumps, and conditionals
* Documented - LOTS of comments
* Easy to modify - Changing the amount of registers or memory size is easy
* Under the MIT license - Please read the file LICENSE in this directory
How to build:
git clone git@github.com:andyrothtech/SmallVM.git
cd smallvm
make
# The sample programs in the programs directory have now been compiled into the programs/bin directory.