This commit is contained in:
hellerve
2015-07-14 18:06:44 +02:00
commit 591a51290c
5 changed files with 181 additions and 0 deletions

22
README.md Normal file
View File

@@ -0,0 +1,22 @@
#cmm
A C implementation of the [Mythical Machine](http://www.openbookproject.net/courses/python4fun/simulator.html)
that executes its' bytecode.
##Building & Installing
The project comes with a Makefile. Just run `make` to get a build in the
`bin` directory. If you really want to install it, run `make install`. That
will only work on Unix systems, though, I am afraid and may clutter your workspace.
##Usage
```
usage: cmm program_name
```
This will "parse" the file and execute the bytecode.
<hr/>
*Have fun!*