-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
43 lines (43 loc) · 1.17 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": "java/yawkat",
"name": "Whitespace",
"authors": ["Jonas Konrad"],
"license": "none",
"languages": ["Java"],
"tags": ["interpreter"],
"date": "2012-10-06 20:46:37 +0200",
"spec_version": "0.3",
"source": ["https://github.com/yawkat/Whitespace"],
"submodules": [{ "path": "Whitespace", "url": "https://github.com/yawkat/Whitespace" }],
"assembly": {
"mnemonics": {
"push": "Push",
"dup": "Duplicate",
"copy": "Copy",
"swap": "Swap",
"drop": "Discard",
"slide": "Slide",
"add": "Addition",
"sub": "Subtraction",
"mul": "Multiplication",
"div": "Division",
"mod": "Modulo",
"store": "Store",
"retrieve": "Retrieve",
"label": "Mark",
"call": "Call",
"jmp": "JumpTo",
"jz": "JumpToIfZero",
"jn": "JumpToIfNegative",
"ret": "EndSubroutine",
"end": "End",
"printc": "PrintChar",
"printi": "PrintNum",
"readc": "ReadChar",
"readi": "ReadNum"
},
"usage": ["enum"]
},
"commands": [{ "type": "interpreter", "usage": "", "input": "hardcoded fibonacci.ws" }],
"notes": "Program is hardcoded to the source of fibonacci.ws"
}