-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
57 lines (57 loc) · 1.34 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
{
"id": "java/thatguy977",
"name": "misc-proj",
"authors": ["That_Guy977"],
"license": "none",
"languages": ["Java"],
"tags": ["interpreter", "programs"],
"date": "2022-04-28 22:59:12 +0700",
"spec_version": "0.3",
"source": ["https://github.com/That-Guy977/misc-proj"],
"submodules": [{ "path": "misc-proj", "url": "https://github.com/That-Guy977/misc-proj" }],
"assembly": {
"mnemonics": {
"push": "PUSH",
"dup": "DUP",
"copy": "COPY",
"swap": "SWAP",
"drop": "DROP",
"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": "END",
"printc": "PRINTC",
"printi": "PRINTI",
"readc": "READC",
"readi": "READI"
},
"usage": ["enum"]
},
"programs": [
{
"path": "java/whitespace-polyglot/HelloWorld.java",
"aux": ["ws/java-polyglot/HelloWorld.ws"],
"polyglot": ["Java"],
"spec_version": "0.2"
}
],
"commands": [
{
"type": "interpreter",
"bin": "java/whitespace-interpreter/Whitespace.class",
"usage": "[<input_file>]",
"input": "<input_file> or stdin"
}
]
}