-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
43 lines (43 loc) · 1.15 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
{
"id": "cpp/marcellippmann-whitepp",
"name": "White++",
"authors": ["Marcel Lippmann"],
"license": "GPL-3.0-or-later",
"languages": ["C++"],
"tags": ["interpreter"],
"date": "2016-07-27 17:01:11 +0200",
"spec_version": "0.2",
"source": [
"https://web.archive.org/web/20200906224652/https://github.com/marcellippmann/Whitepp/",
"https://github.com/wspace/marcellippmann-whitepp"
],
"submodules": [{ "path": "Whitepp", "url": "https://github.com/wspace/marcellippmann-whitepp" }],
"assembly": {
"mnemonics": {
"push": "Push",
"dup": "Dupl",
"swap": "Swap",
"drop": "Discard",
"add": "Add",
"sub": "Sub",
"mul": "Mul",
"div": "Div",
"mod": "Mod",
"store": "Store",
"retrieve": "Retrieve",
"label": "SetLbl",
"call": "CallLbl",
"jmp": "Jump",
"jz": "JumpZero",
"jn": "JumpNeg",
"ret": "Ret",
"end": "End",
"printc": "PrintChar",
"printi": "PrintInt",
"readc": "ReadChar",
"readi": "ReadInt"
},
"usage": ["enum"]
},
"commands": [{ "type": "interpreter", "bin": "bin/White++", "usage": "<file>" }]
}