An open API service indexing awesome lists of open source software.

https://github.com/molnarmark/lua-stack-vm

Stack based simple Virtual Machine Implementation in Lua for MTA:SA. For fun.
https://github.com/molnarmark/lua-stack-vm

Last synced: 10 months ago
JSON representation

Stack based simple Virtual Machine Implementation in Lua for MTA:SA. For fun.

Awesome Lists containing this project

README

          

## Stack based simple Virtual Machine Implementation in Lua for MTA:SA

### Example
```
PUSH 5
PUSH 4
ADD
PUSH 1
PUSH 2
ADD
PUSH 10
PUSH 5
SUB
PUSH 10
PUSH 10
MUL
PUSH 50
PUSH 2
DIV
```

*For fun.*