-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
49 lines (49 loc) · 1.46 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
{
"id": "c/siritori",
"name": "whitespace",
"authors": ["Eric Sartre"],
"license": "GPL-3.0",
"languages": ["C"],
"tags": ["interpreter", "disassembler", "mapping"],
"date": "2011-07-02 17:36:46 +0900",
"spec_version": "0.3",
"source": ["https://github.com/siritori/whitespace"],
"submodules": [{ "path": "whitespace", "url": "https://github.com/siritori/whitespace" }],
"assembly": {
"mnemonics": {
"push": "psh",
"dup": "dup",
"copy": "cpy",
"swap": "swp",
"drop": "dsc",
"slide": "sld",
"add": "add",
"sub": "sub",
"mul": "mul",
"div": "div",
"mod": "mod",
"store": "put",
"retrieve": "get",
"label": "lbl",
"call": "jal",
"jmp": "jmp",
"jz": "jsz",
"jn": "jsn",
"ret": "ret",
"end": "end",
"printc": "pch",
"printi": "pnm",
"readc": "gch",
"readi": "gnm"
},
"usage": ["enum"]
},
"mappings": [{ "space": "S", "tab": "T", "lf": "N" }],
"commands": [
{ "type": "interpreter", "bin": "bin/wsvm", "usage": "<file>" },
{ "bin": "bin/wscc", "usage": "<output>", "input": "stdin", "output": "<output> or a.wb" },
{ "type": "interactive assembler", "bin": "bin/wsas", "input": "stdin", "output": "a.wb" },
{ "type": "mapping", "bin": "bin/ws_trans", "usage": "[<file>]", "input": "<file> or stdin" },
{ "type": "disassembler", "bin": "bin/wb_dump.c", "usage": "<file>", "input": "<file>" }
]
}