-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
43 lines (43 loc) · 1.1 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"id": "lua/vyo-callisto",
"name": "callisto",
"authors": ["Manu Weidmann"],
"license": "none",
"languages": ["Lua"],
"tags": ["interpreter"],
"date": "2015-10-15 20:40:19 +0200",
"spec_version": "0.3",
"source": ["https://github.com/vyo/callisto"],
"submodules": [{ "path": "callisto", "url": "https://github.com/vyo/callisto" }],
"assembly": {
"mnemonics": {
"push": "push",
"dup": "dupe",
"copy": "copy",
"swap": "swap",
"drop": "pop",
"slide": "slide",
"add": "add",
"sub": "sub",
"mul": "mul",
"div": "div",
"mod": "mod",
"store": "set",
"retrieve": "get",
"label": "mark",
"call": "call",
"jmp": "jump",
"jz": "jzero",
"jn": "jneg",
"ret": "done",
"end": "exit",
"printc": "charOut",
"printi": "numberOut",
"readc": "charIn",
"readi": "numberIn"
},
"usage": ["enum"]
},
"commands": [{ "type": "interpreter", "bin": "callisto.lua", "notes": "Does nothing" }],
"notes": "Unfinished. It has no parser and does not execute a program."
}