https://github.com/zac-garby/vm
A virtual machine for a simple programming language.
https://github.com/zac-garby/vm
programming-language virtual-machine
Last synced: 10 months ago
JSON representation
A virtual machine for a simple programming language.
- Host: GitHub
- URL: https://github.com/zac-garby/vm
- Owner: zac-garby
- License: gpl-3.0
- Created: 2021-01-08T18:16:17.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-28T12:01:42.000Z (almost 5 years ago)
- Last Synced: 2025-02-10T01:41:43.660Z (about 1 year ago)
- Topics: programming-language, virtual-machine
- Language: C
- Homepage:
- Size: 113 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vm
A virtual machine for a simple programming language.
The aim is to have a working VM, including:
- Lightweight (non-OS) threads
- Message passing between these threads
- Garbage Collection
- C Interfacing
## Running the VM
Well it doesn't do a whole lot at the moment, but compilation is easy.
```
mkdir bin
then:
make vm # just compile
or
make run # compile and run the vm
```
At the moment, it'll just run a meaningless test program.