-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
56 lines (56 loc) · 1.75 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
{
"id": "rust/faultier-albino",
"name": "Albino",
"authors": ["Taro Sako"],
"license": "MIT",
"languages": ["Rust"],
"tags": ["interpreter", "assembler", "disassembler", "bytecode", "Brainfuck to Whitespace", "programs"],
"date": "2014-07-18 09:13:55 +0900",
"spec_version": "0.3",
"source": ["https://github.com/faultier/albino"],
"submodules": [{ "path": "albino", "url": "https://github.com/faultier/albino" }],
"relations": [{ "id": "rust/faultier-whitebase", "type": "library" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "PUSH",
"dup": "DUP",
"copy": "COPY",
"swap": "SWAP",
"drop": "DISCARD",
"slide": "SLIDE",
"add": "ADD",
"sub": "SUB",
"mul": "MUL",
"div": "DIV",
"mod": "MOD",
"store": "STORE",
"retrieve": "RETRIEVE",
"label": "MARK",
"call": "CALL",
"jmp": "JUMP",
"jz": "JUMPZ",
"jn": "JUMPN",
"ret": "RETURN",
"end": "EXIT",
"printc": "PUTC",
"printi": "PUTN",
"readc": "GETC",
"readi": "GETN"
},
"usage": ["assembler", "disassembler"]
},
"programs": [
{ "path": "examples/fib.ws", "spec_version": "0.2" },
{ "path": "examples/hello.ws", "equivalent": "hworld.ws", "spec_version": "0.2" }
],
"build_errors": "Needs many changes for latest Rust",
"commands": [
{ "bin": "target/release/albino", "option_parse": "manual" },
{ "bin": "target/release/albino-run", "option_parse": "manual" },
{ "bin": "target/release/albino-build", "option_parse": "manual" },
{ "bin": "target/release/albino-exec", "option_parse": "manual" },
{ "bin": "target/release/albino-gen", "option_parse": "manual" }
],
"todo": "Document options"
}