-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
57 lines (57 loc) · 1.39 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
54
55
56
57
{
"id": "haskell/matsubara0507",
"name": "Whitespace",
"authors": ["松原信忠 (MATSUBARA Nobutada)"],
"license": "BSD-3-Clause",
"languages": ["Haskell"],
"tags": ["interpreter"],
"date": "2016-05-06 12:05:44 +0900",
"spec_version": "0.3",
"source": ["https://github.com/matsubara0507/whitespace_has/tree/develop"],
"submodules": [
{
"path": "whitespace_has",
"url": "https://github.com/matsubara0507/whitespace_has",
"branch": "develop"
}
],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "PUSH",
"dup": "DUP",
"copy": "COPY",
"swap": "SWAP",
"drop": "DISC",
"slide": "SLIDE",
"add": "ADD",
"sub": "SUB",
"mul": "MUL",
"div": "DIV",
"mod": "MOD",
"store": "STORE",
"retrieve": "RETRIEVE",
"label": "MARK",
"call": "CALL",
"jmp": "JUMP",
"jz": "JMPZERO",
"jn": "JMPNEG",
"ret": "RETURN",
"end": "EXIT",
"printc": "OUTCHR",
"printi": "OUTNUM",
"readc": "INCHR",
"readi": "INNUM"
},
"usage": ["enum"]
},
"programs": [
{ "path": "examples/calc.ws" },
{ "path": "examples/fact.ws" },
{ "path": "examples/fibonacci.ws" },
{ "path": "examples/hanoi.ws" },
{ "path": "examples/hw.ws" },
{ "path": "examples/hworld.ws" },
{ "path": "examples/name.ws" }
]
}