-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
53 lines (53 loc) · 1.42 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": "cpp/keirua-white",
"name": "white",
"authors": ["Keirua"],
"license": "none",
"languages": ["C++"],
"tags": ["interpreter", "disassembler"],
"date": "2014-05-30 23:51:59 +0200",
"spec_version": "0.3",
"source": ["https://github.com/Keirua/whitespace"],
"submodules": [{ "path": "whitespace", "url": "https://github.com/Keirua/whitespace" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "push",
"dup": "dup",
"copy": "copy",
"swap": "swap",
"drop": "discard",
"slide": "slide",
"add": "add",
"sub": "sub",
"mul": "mul",
"div": "div",
"mod": "mod",
"store": "store",
"retrieve": "retrieve",
"label": "setlabel",
"call": "call_subroutine",
"jmp": "jump",
"jz": "jzero",
"jn": "jneg",
"ret": "endofsubroutine",
"end": "endofprogram",
"printc": "print_c",
"printi": "print_i",
"readc": "read_c",
"readi": "read_i"
},
"indentation": "",
"usage": ["disassembler", "enum"]
},
"programs": [
{ "path": "examples/count2.ws" },
{ "path": "examples/hanoi.ws" },
{ "path": "examples/hworld2.ws" },
{ "path": "examples/loctest.ws" },
{ "path": "notworking/calc.ws" },
{ "path": "notworking/fact.ws" },
{ "path": "notworking/name.ws" }
],
"commands": [{ "type": "interpreter", "bin": "white", "usage": "<file>" }]
}