-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
52 lines (52 loc) · 1.29 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
44
45
46
47
48
49
50
51
52
{
"id": "c/threeifbywhiskey-satan",
"name": "SaTaN",
"authors": ["Dorien Snake (Three If By Whiskey)"],
"license": "none",
"languages": ["C"],
"tags": ["interpreter"],
"date": "2014-03-03 16:03:49 -0500",
"spec_version": "0.3",
"source": ["https://github.com/threeifbywhiskey/satan"],
"submodules": [{ "path": "satan", "url": "https://github.com/threeifbywhiskey/satan" }],
"bounds": {
"precision": "C int",
"stack_cap": "unbounded",
"call_stack_cap": "unbounded",
"heap_min": "unbounded",
"heap_max": "unbounded",
"heap_cap": "unbounded",
"label_cap": "unbounded",
"instruction_cap": "unbounded"
},
"assembly": {
"mnemonics": {
"push": "push",
"dup": "dup",
"copy": "copy",
"swap": "swap",
"drop": "pop",
"slide": "slide",
"add": "add",
"sub": "sub",
"mul": "mul",
"div": "div",
"mod": "mod",
"store": "store",
"retrieve": "load",
"label": "label",
"call": "call",
"jmp": "jump",
"jz": "jz",
"jn": "jn",
"ret": "ret",
"end": "exit",
"printc": "ochr",
"printi": "onum",
"readc": "ichr",
"readi": "inum"
},
"usage": ["enum"]
},
"commands": [{ "type": "interpreter", "bin": "satan", "usage": "<file>" }]
}