-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
52 lines (52 loc) · 1.55 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
{
"id": "c/tejaskasetty",
"name": "Whitespace Esolang Compiler",
"authors": ["Sushrith Arkal", "Tejas Kasetty", "Suhas Sumukh"],
"license": "none",
"languages": ["C", "Yacc", "Lex"],
"tags": ["disassembler", "parser"],
"date": "2017-03-21 12:42:53 +0530",
"spec_version": "0.2",
"source": ["https://gitlab.com/tejaskasetty/ws-compiler"],
"submodules": [{ "path": "ws-compiler", "url": "https://gitlab.com/tejaskasetty/ws-compiler.git" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "push <number>",
"dup": "dup",
"swap": "swap",
"drop": "pop",
"add": "add",
"sub": "sub",
"mul": "mul",
"div": "div",
"mod": "mod",
"store": "store",
"retrieve": "retrieve",
"label": "L<number>:",
"call": "call F<number>",
"jmp": "goto L<number>",
"jz": "gotoiz L<number>",
"jn": "gotoin L<number>",
"ret": "return",
"end": "end",
"printc": "printchar",
"printi": "printnum",
"readc": "readchar",
"readi": "readnum"
},
"indentation": "",
"usage": ["disassembler"]
},
"programs": [
{ "path": "flex-bison/262_267_256/count.ws" },
{ "path": "flex-bison/262_267_256/main.ws" },
{ "path": "flex-bison/count.ws" },
{ "path": "flex-bison/main.ws" },
{ "path": "prev-attempts/count.ws" }
],
"build_errors": "symtab.h: multiple definition of `symtable`",
"commands": [
{ "type": "disassembler", "bin": "flex-bison/262_267_256/ws", "usage": "< <file>", "input": "stdin" }
]
}