forked from wspace/corpus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.json
63 lines (63 loc) · 1.59 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
58
59
60
61
62
63
{
"id": "coffeescript/ehrlichb",
"name": "Whitespace-JS",
"authors": ["Bryan Ehrlich"],
"license": "none",
"languages": ["CoffeeScript"],
"tags": ["interpreter", "assembler", "disassembler", "programs"],
"date": "2013-08-14 18:12:35 -0400",
"spec_version": "0.3",
"source": ["https://github.com/ehrlich-b/whitespace-js"],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": ["PUSH"],
"dup": ["COPY"],
"copy": ["COPY_N"],
"swap": ["SWAP"],
"drop": ["POP"],
"slide": ["SLIDE"],
"add": ["ADD"],
"sub": ["SUB"],
"mul": ["MULT"],
"div": ["DIV"],
"mod": ["MOD"],
"store": ["STORE"],
"retrieve": ["LOAD"],
"label": ["LABEL"],
"call": ["CALL"],
"jmp": ["JMP"],
"jz": ["JEQ"],
"jn": ["JLT"],
"ret": ["END_SUB"],
"end": ["END"],
"printc": ["OUT"],
"printi": ["OUT_N"],
"readc": ["IN"],
"readi": ["IN_N"]
},
"case_sensitive_mnemonics": false,
"indentation": "",
"usage": ["assembler", "disassembler"],
"extension": "bs"
},
"programs": [
{
"path": "example programs/blackspace/hello.bs",
"generated": "example programs/whitespace/hello.ws"
},
{
"path": "example programs/blackspace/say_hi.bs",
"generated": "example programs/whitespace/say_hi.ws"
},
{ "path": "example programs/blackspace/prompt.bs" }
],
"commands": [
{
"dependencies": ["Grunt"],
"install_dependencies": "npm install",
"build": "grunt",
"run_errors": "Unclear how to run"
}
]
}