-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathproject.json
More file actions
61 lines (61 loc) · 1.9 KB
/
project.json
File metadata and controls
61 lines (61 loc) · 1.9 KB
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
58
59
60
61
{
"id": "cpp/burghard-wsintercpp",
"name": "wsintercpp",
"authors": ["Oliver Burghard"],
"license": "GPL",
"languages": ["C++"],
"tags": ["interpreter"],
"date": "2003-04-04 17:25:44 +0000",
"spec_version": "0.2",
"source": [
"https://web.archive.org/web/20030629125208/http://www.burghard.info:80/code/whitespace/wsintercpp/index.html",
"https://web.archive.org/web/20140609162801/http://www.burghard.info/Code/Whitespace/wsintercpp.zip",
"https://web.archive.org/web/20110911114338/http://www.burghard.info/Code/Whitespace/",
"https://web.archive.org/web/20150717140342/http://compsoc.dur.ac.uk:80/whitespace/download.php",
"https://github.com/wspace/burghard-wsintercpp",
"https://github.com/thaliaarchi/repo-archival/blob/main/scripts/wspace/burghard.sh"
],
"submodules": [{ "path": "wsintercpp", "url": "https://github.com/wspace/burghard-wsintercpp" }],
"whitespace": {
"nonstandard": [{ "name": "debugprintstack", "seq": "LLSSS" }, { "name": "debugprintheap", "seq": "LLSST" }]
},
"assembly": {
"mnemonics": {
"push": "push",
"dup": "doub",
"swap": "swap",
"drop": "pop",
"add": "add",
"sub": "sub",
"mul": "mul",
"div": "div",
"mod": "mod",
"store": "store",
"retrieve": "retrive",
"label": "label",
"call": "call",
"jmp": "jump",
"jz": "jumpz",
"jn": "jumpn",
"ret": "ret",
"end": "exit",
"printc": "outc",
"printi": "outn",
"readc": "inc",
"readi": "inn",
"dumpstack": "debugprintstack",
"dumpheap": "debugprintheap"
},
"usage": ["debug"],
"notes": "Printed when -d is passed"
},
"commands": [
{
"type": "interpreter",
"bin": "wsinter",
"usage": "<file> [-d]",
"options": [{ "short": "d", "desc": "Dump current instruction at every step" }],
"option_parse": "manual"
}
]
}