-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
44 lines (44 loc) · 1.27 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
{
"id": "java/wrotycz",
"name": "whitespace-interpreter",
"authors": ["Kamil Węglarz"],
"license": "MIT",
"languages": ["Java"],
"tags": ["interpreter"],
"date": "2018-05-21 13:44:13 +0200",
"spec_version": "0.3",
"source": ["https://github.com/wrotycz/whitespace-interpreter"],
"submodules": [{ "path": "whitespace-interpreter", "url": "https://github.com/wrotycz/whitespace-interpreter" }],
"challenges": ["Codewars"],
"assembly": {
"mnemonics": {
"push": "PUSH",
"dup": "DUPLICATE_TOP",
"copy": "DUPLICATE_NTH",
"swap": "SWAP_TOP",
"drop": "DISCARD_TOP",
"slide": "DISCARD_BELOW_TOP",
"add": "ADD",
"sub": "SUBTRACT",
"mul": "MULTIPLY",
"div": "DIVIDE",
"mod": "MOD",
"store": "STORE",
"retrieve": "GET",
"label": "MARK",
"call": "CALL",
"jmp": "JUMP",
"jz": "EQ_ZERO",
"jn": "LT_ZERO",
"ret": "EXIT_SUBROUTINE",
"end": "EXIT",
"printc": "OUTPUT_CHARACTER",
"printi": "OUTPUT_NUMBER",
"readc": "STORE_INPUT_CHARACTER",
"readi": "STORE_INPUT_NUMBER"
},
"usage": ["enum"]
},
"run_errors": "Needs Codewars entrypoint",
"commands": [{ "type": "interpreter", "bin": "target/whitespace-interpreter-1.0-SNAPSHOT.jar" }]
}