-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
83 lines (83 loc) · 2.5 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"id": "ocaml/lifthrasiir-esotope",
"name": "Esotope",
"authors": ["Kang Seonghoon"],
"license": "none",
"languages": ["OCaml"],
"tags": ["interpreter"],
"date": "2009-05-07 10:57:56 +0900",
"spec_version": "0.3",
"source": [
"https://archive.softwareheritage.org/browse/origin/directory/?origin_url=https://bitbucket.org/lifthrasiir/esotope-esotope",
"https://bitbucket-archive.softwareheritage.org/projects/li/lifthrasiir/esotope-esotope.html",
"https://web.archive.org/web/20181210223811/https://bitbucket.org/lifthrasiir/esotope-esotope/",
"https://github.com/wspace/lifthrasiir-esotope",
"https://github.com/thaliaarchi/repo-archival/blob/main/scripts/wspace/lifthrasiir-esotope.sh",
"https://mearie.org/projects/esotope/",
"https://github.com/mearie/TEMP_mearie_old/tree/master/projects/esotope",
"https://github.com/lifthrasiir",
"https://esolangs.org/wiki/User:Tokigun"
],
"submodules": [{ "path": "esotope-esotope", "url": "https://github.com/wspace/lifthrasiir-esotope" }],
"whitespace": { "nonstandard": [{ "name": "pick" }, { "name": "roll" }, { "name": "discard" }], "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>:",
"call": "call",
"jmp": "jmp",
"jz": "jz",
"jn": "jn",
"ret": "ret",
"end": "halt",
"printc": "putchar",
"printi": "putint",
"readc": "getchar",
"readi": "getint"
},
"usage": ["debug"]
},
{
"mnemonics": {
"push": "Push",
"dup": "Pick (1,0)",
"copy": "Pick (1,v)",
"swap": "Roll (1,1)",
"drop": "Discard (1,0)",
"slide": "Discard (v,1)",
"add": "Add",
"sub": "Subtract",
"mul": "Multiply",
"div": "Quotient",
"mod": "Modulo",
"store": "Store",
"retrieve": "Retrieve",
"label": "Label",
"call": "Call",
"jmp": "Jump",
"jz": "JumpIfZero",
"jn": "JumpIfNeg",
"ret": "Return",
"end": "Exit",
"printc": "OutputChar",
"printi": "OutputNum",
"readc": "InputChar",
"readi": "InputNum"
},
"usage": ["enum"]
}
]
}