-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
46 lines (46 loc) · 1.15 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
{
"id": "scheme/athos-white-scheme",
"name": "white-scheme",
"authors": ["Ohta Shogo"],
"license": "MIT",
"languages": ["Scheme"],
"tags": ["interpreter"],
"date": "2010-12-23 08:35:18 +0900",
"spec_version": "0.3",
"source": ["https://github.com/athos/white-scheme"],
"submodules": [{ "path": "white-scheme", "url": "https://github.com/athos/white-scheme" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "PUSH",
"dup": "DUP",
"copy": "COPY",
"swap": "SWAP",
"drop": "POP",
"slide": "SLIDE",
"add": "ADD",
"sub": "SUB",
"mul": "MUL",
"div": "DIV",
"mod": "MOD",
"store": "STORE",
"retrieve": "RETR",
"label": "LABEL",
"call": "CALL",
"jmp": "JUMP",
"jz": "BZERO",
"jn": "BNEG",
"ret": "RET",
"end": "QUIT",
"printc": "PUTC",
"printi": "PUTN",
"readc": "GETC",
"readi": "GETN"
},
"usage": ["enum"]
},
"programs": [
{ "path": "examples/count.ws", "equivalent": "count.ws", "spec_version": "0.2" },
{ "path": "examples/hello.ws", "spec_version": "0.2" }
]
}