-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.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": "idris/edwinb-ws-idr",
"name": "WS-idr",
"authors": ["Edwin Brady"],
"license": "none",
"languages": ["Idris"],
"tags": ["interpreter"],
"date": "2012-11-25 16:53:09 +0000",
"spec_version": "0.3",
"source": [
"https://github.com/edwinb/WS-idr",
"https://github.com/wspace/edwinb-ws-idr",
"https://twitter.com/edwinbrady/status/689863187546664960"
],
"submodules": [{ "path": "WS-idr", "url": "https://github.com/wspace/edwinb-ws-idr" }],
"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": "LABEL",
"call": "CALL",
"jmp": "JUMP",
"jz": "JZ",
"jn": "JNEG",
"ret": "RETURN",
"end": "END",
"printc": "OUTPUT",
"printi": "OUTPUTNUM",
"readc": "READCHAR",
"readi": "READNUM"
},
"usage": ["enum", "debug"]
},
"programs": [
{ "path": "fact.ws", "equivalent": "fact.ws", "spec_version": "0.2" },
{ "path": "hanoi.ws", "equivalent": "hanoi.ws", "spec_version": "0.2" },
{ "path": "hworld.ws", "equivalent": "hworld.ws", "spec_version": "0.2" },
{ "path": "name.ws", "equivalent": "name.ws", "spec_version": "0.2" }
],
"commands": [{ "bin": "wspace", "usage": "<file>" }]
}