├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── vm.c ├── vm.h └── vmtest.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.exe 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyebberson/vm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyebberson/vm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyebberson/vm/HEAD/README.md -------------------------------------------------------------------------------- /vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyebberson/vm/HEAD/vm.c -------------------------------------------------------------------------------- /vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyebberson/vm/HEAD/vm.h -------------------------------------------------------------------------------- /vmtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyebberson/vm/HEAD/vmtest.c --------------------------------------------------------------------------------