-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
42 lines (42 loc) · 1.02 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/kmizu",
"name": "ws_interpreter",
"authors": ["Kota Mizushima"],
"license": "MIT",
"languages": ["Java"],
"tags": ["interpreter"],
"date": "2005",
"spec_version": "0.3",
"source": ["https://github.com/kmizu/ws_interpreter"],
"submodules": [{ "path": "ws_interpreter", "url": "https://github.com/kmizu/ws_interpreter" }],
"assembly": {
"mnemonics": {
"push": "PUSH",
"dup": "DUP",
"copy": "COPY",
"swap": "SWAP",
"drop": "DISCARD",
"slide": "SLIDE",
"add": "ADD",
"sub": "SUB",
"mul": "MUL",
"div": "DIV",
"mod": "MOD",
"store": "STORE",
"retrieve": "RETR",
"label": "LABEL",
"call": "CALL",
"jmp": "JUMP",
"jz": "JUMP_IF_ZERO",
"jn": "JUMP_IF_NEG",
"ret": "RETURN",
"end": "END",
"printc": "PRINT_CHAR",
"printi": "PRINT_NUM",
"readc": "READ_CHAR",
"readi": "READ_NUM"
},
"usage": ["enum"]
},
"commands": [{ "bin": "ws.jar", "usage": "<file>" }]
}