-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
55 lines (55 loc) · 1.63 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
{
"id": "php/nutcrack-whiteplanes",
"name": "Whiteplanes.php",
"authors": ["Takuya Katsurada"],
"license": "MIT",
"languages": ["PHP"],
"tags": ["interpreter", "programs"],
"date": "2016-04-14 00:14:55 +0900",
"spec_version": "0.3",
"source": [
"https://archive.softwareheritage.org/browse/origin/directory/?origin_url=https://github.com/whiteplanes/whiteplanes.php",
"https://github.com/wspace/nutcrack-whiteplanes.php",
"https://wspace.github.io/nutcrack-whiteplanes.github.io/",
"https://github.com/thaliaarchi/repo-archival/blob/main/scripts/wspace/nutcrack-whiteplanes.sh"
],
"submodules": [{ "path": "whiteplanes.php", "url": "https://github.com/wspace/nutcrack-whiteplanes.php" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "PUSH",
"dup": "DUPLICATE",
"copy": "COPY",
"swap": "SWAP",
"drop": "DISCARD",
"slide": "SLIDE",
"add": "ADD",
"sub": "SUB",
"mul": "MUL",
"div": "DIV",
"mod": "MOD",
"store": "STORE",
"retrieve": "RETRIEVE",
"label": "REGISTER",
"call": "CALL",
"jmp": "JUMP",
"jz": "TEST_EQUAL",
"jn": "TEST_LESS",
"ret": "RETURN",
"end": "END",
"printc": "OUTPUT_CHAR",
"printi": "OUTPUT_INT",
"readc": "INPUT_CHAR",
"readi": "INPUT_INT"
},
"usage": ["enum"]
},
"programs": [
{ "path": "test/etc/Count.ws" },
{ "path": "test/etc/FlowControl.ws" },
{ "path": "test/etc/HeapControl.ws" },
{ "path": "test/etc/HelloWorld.ws" },
{ "path": "test/etc/Input.ws" }
],
"build_errors": "No entrypoint"
}