Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pdemian/DEXEv3
A stack based bytecode interpreter in C
https://github.com/pdemian/DEXEv3
Last synced: 3 months ago
JSON representation
A stack based bytecode interpreter in C
- Host: GitHub
- URL: https://github.com/pdemian/DEXEv3
- Owner: pdemian
- License: mit
- Created: 2014-04-04T18:20:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-04T18:21:28.000Z (over 10 years ago)
- Last Synced: 2024-04-24T16:14:56.156Z (7 months ago)
- Language: C
- Homepage:
- Size: 121 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- AwesomeInterpreter - DEXEv3
README
#DEXE
##Purpose
I made as an educational experience for myself.
It is a stack based bytecode interpreter.
There is no parser for this. I hand compiled all test files by hand.
DEXE stands for D EXEcutable. Not related to the D programming language. I started this project before I knew that the D language existed.In case you're wondering, it's called v3 because it's the 3rd iteration.
##Examples
./dexe ../test/test.dexe
./dexe ../test/test2.dexe##Compilation
On Windows:cd src
compile
On Linux:cd src
make