forked from wspace/corpus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
62 lines (62 loc) · 1.95 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
58
59
60
61
62
{
"id": "python/lifthrasiir-esotope-ws",
"name": "esotope-ws",
"authors": ["Kang Seonghoon"],
"license": "none",
"languages": ["Python"],
"tags": ["interpreter", "assembler", "disassembler"],
"date": "2004-12-08 00:00:00 +0900",
"spec_version": "0.3",
"source": [
"https://github.com/wspace/lifthrasiir-esotope-ws",
"https://archive.softwareheritage.org/browse/origin/directory/?origin_url=https://bitbucket.org/lifthrasiir/esotope-ws",
"https://web.archive.org/web/20181210224409/https://bitbucket.org/lifthrasiir/esotope-ws/",
"https://github.com/thaliaarchi/repo-archival/blob/main/scripts/wspace/lifthrasiir-esotope-ws.sh",
"https://mearie.org/projects/esotope/ws",
"https://github.com/mearie/TEMP_mearie_old/tree/master/projects/esotope",
"https://github.com/lifthrasiir",
"https://esolangs.org/wiki/User:Tokigun"
],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": ["push"],
"dup": ["dup"],
"copy": ["copy"],
"swap": ["swap"],
"drop": ["pop"],
"slide": ["slide"],
"add": ["add"],
"sub": ["sub"],
"mul": ["mul"],
"div": ["div"],
"mod": ["mod"],
"store": ["store"],
"retrieve": ["retrieve"],
"label": ["<label>:", "label#_####"],
"call": ["call"],
"jmp": ["jmp"],
"jz": ["jz"],
"jn": ["jn"],
"ret": ["ret"],
"end": ["halt"],
"printc": ["putchar"],
"printi": ["putint"],
"readc": ["getchar"],
"readi": ["getint"]
},
"usage": ["assembler", "disassembler"],
"extension": "wsa"
},
"commands": [
{
"type": "interpreter",
"bin": "esotope-ws",
"usage": "[-c <output_file>] [-d <output_file>] <file>",
"options": [
{ "short": "c", "arg": "output_file", "arg_required": true, "desc": "assembler mode" },
{ "short": "d", "arg": "output_file", "arg_required": true, "desc": "disassembler mode" }
]
}
]
}