-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
42 lines (42 loc) · 1.32 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
{
"id": "java/rahulkp",
"name": "WhiteSpace-Interpreter",
"authors": ["Rahul K P", "Sumedh Hagaldivte", "Amitash M S"],
"license": "none",
"languages": ["Java"],
"tags": ["interpreter", "programs"],
"date": "2022-04-29 21:57:54 +0530",
"spec_version": "0.3",
"source": ["https://github.com/Rahul-KP/WhiteSpace-Interpreter"],
"submodules": [{ "path": "WhiteSpace-Interpreter", "url": "https://github.com/Rahul-KP/WhiteSpace-Interpreter" }],
"relations": [{ "id": "vim/rolf007-ws-vim", "type": "embedded" }],
"whitespace": {
"unimplemented": ["store", "retrieve", "label", "call", "jmp", "jz", "jn", "ret", "end", "readc"],
"extension": "ws"
},
"assembly": {
"mnemonics": {
"push": "push",
"dup": "duplicateTop",
"copy": "copy",
"swap": "swap",
"drop": "discard",
"slide": "slide",
"add": "add",
"sub": "subtract",
"mul": "multiply",
"div": "divide",
"mod": "modulo",
"printc": "outputChar",
"printi": "outputInt",
"readi": "input"
},
"usage": ["enum"]
},
"programs": [
{ "path": "add2.ws", "spec_version": "0.2" },
{ "path": "hello.ws", "spec_version": "0.2" },
{ "path": "print2.ws", "spec_version": "0.2" }
],
"commands": [{ "type": "interpreter", "bin": "Test.class", "usage": "<program>" }]
}