-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
43 lines (43 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
{
"id": "cpp/benajmin",
"name": "whitespace-interpreter",
"authors": ["Benjamin Wilkins"],
"license": "none",
"languages": ["C++"],
"tags": ["interpreter", "programs"],
"date": "2017-06-05 09:34:24 -0400",
"spec_version": "0.2",
"source": ["https://github.com/benajmin/whitespace-interpreter"],
"submodules": [{ "path": "whitespace-interpreter", "url": "https://github.com/benajmin/whitespace-interpreter" }],
"bounds": { "precision": "fixed" },
"whitespace": { "extension": "whitespace" },
"assembly": {
"mnemonics": {
"push": "Push",
"dup": "Duplicate",
"swap": "Swap",
"drop": "Pop",
"add": "Add",
"sub": "Subtract",
"mul": "Multiply",
"div": "Divide",
"mod": "Mod",
"store": "Store",
"retrieve": "Retrieve",
"label": "Mark",
"call": "Call",
"jmp": "Jump",
"jz": "JumpZero",
"jn": "JumpNegative",
"ret": "EndSub",
"end": "End",
"printc": "OutChar",
"printi": "OutInt",
"readc": "InChar",
"readi": "InInt"
},
"usage": ["enum"]
},
"programs": [{ "path": "SamplePrograms/count.whitespace" }, { "path": "SamplePrograms/helloWorld.whitespace" }],
"commands": [{ "type": "interpreter", "bin": "WhitespaceInterpreter.out", "usage": "<file>" }]
}