-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
53 lines (53 loc) · 1.49 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
53
{
"id": "javascript/macocha-whitespacer",
"name": "whitespacer",
"authors": ["Maciej Siwek"],
"license": "MIT",
"languages": ["JavaScript/React"],
"tags": ["IDE", "interpreter", "disassembler"],
"date": "2015-09-04 14:22:57 +0200",
"spec_version": "0.3",
"source": ["https://github.com/macocha/whitespacer"],
"submodules": [{ "path": "whitespacer", "url": "https://github.com/macocha/whitespacer" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "PUSH",
"dup": "DUPL",
"copy": "COPY",
"swap": "SWP",
"drop": "DISC",
"slide": "SLIDE",
"add": "ADD",
"sub": "SUB",
"mul": "MUL",
"div": "DIV",
"mod": "MOD",
"store": "STORE",
"retrieve": "GET",
"label": "LABEL",
"call": "CALL",
"jmp": "JMP",
"jz": "JEZ",
"jn": "JLZ",
"ret": "RET",
"end": "EXIT",
"printc": "OUTC",
"printi": "OUTN",
"readc": "INPC",
"readi": "INPN"
},
"usage": ["disassembler"]
},
"programs": [
{ "path": "whitespace/examples/calc.ws" },
{ "path": "whitespace/examples/count.ws" },
{ "path": "whitespace/examples/fact.ws" },
{ "path": "whitespace/examples/fibonacci.ws" },
{ "path": "whitespace/examples/hanoi.ws" },
{ "path": "whitespace/examples/hworld.ws" },
{ "path": "whitespace/examples/name.ws" },
{ "path": "whitespace/examples/sudoku.ws" }
],
"notes": "Assembly is only displayed, not disassembled"
}