-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
60 lines (60 loc) · 1.9 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
{
"id": "c/remigascou",
"name": "Whitespace Parser",
"authors": ["Rémi Gascou"],
"license": "none",
"languages": ["C", "Yacc", "Lex"],
"tags": ["assembler", "disassembler", "syntax highlighting", "programs"],
"date": "2020-03-13 12:59:01 +0100",
"spec_version": "0.2",
"source": [
"https://github.com/RemiGascou/small-projects/tree/master/C/whitespace",
"https://github.com/wspace/remigascou-c",
"https://github.com/thaliaarchi/repo-archival/blob/main/scripts/wspace/remigascou-c.sh"
],
"submodules": [{ "path": "whitespace", "url": "https://github.com/wspace/remigascou-c" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "push",
"dup": "dup",
"swap": "swap",
"drop": "pop",
"add": "add",
"sub": "sub",
"mul": "mul",
"div": "div",
"mod": "mod",
"store": "store",
"retrieve": "load",
"label": "lbl",
"call": "call",
"jmp": "jmp",
"jz": "jmpz",
"jn": "jmpn",
"ret": "leave",
"end": "end",
"printc": "printc",
"printi": "printn",
"readc": "readc",
"readi": "readn"
},
"line_comments": [";"],
"usage": ["syntax highlighter"],
"extension": "asm"
},
"programs": [
{ "path": "testprograms/full.ws" },
{ "path": "testprograms/ws/full.ws" },
{ "path": "testprograms/ws/labels.ws" },
{ "path": "testprograms/ws/tes01.ws" },
{ "path": "testprograms/wsasm/test.wsasm" }
],
"commands": [
{ "type": "assembler", "bin": "dev/bin/wscc", "usage": "< <file>" },
{ "type": "disassembler", "bin": "dev/bin/decompiler", "usage": "< <file>" },
{ "type": "syntax highlighter", "bin": "dev/beautify_ws.sh", "usage": "<file>" },
{ "type": "syntax highlighter", "bin": "dev/beautify_wsasm.sh", "usage": "<file>" }
],
"notes": "lexxyacc/compiler is seemingly incomplete and is missing local headers"
}