-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
53 lines (53 loc) · 1.43 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
{
"id": "lolcode/0x0dea",
"name": "whitespace.lol",
"authors": ["D.E. Akers"],
"license": "WTFPL",
"languages": ["LOLCODE"],
"tags": ["interpreter", "programs"],
"date": "2016-11-21 01:10:33 -0500",
"spec_version": "0.3",
"source": [
"https://github.com/hostilefork/whitespacers/tree/master/lolcode",
"https://github.com/wspace/0x0dea-lolcode",
"https://github.com/thaliaarchi/repo-archival/blob/main/scripts/wspace/0x0dea-lolcode.sh"
],
"submodules": [{ "path": "lolcode", "url": "https://github.com/wspace/0x0dea-lolcode" }],
"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": "load",
"label": "label",
"call": "call",
"jmp": "jump",
"jz": "jmpz",
"jn": "jmpn",
"ret": "return",
"end": "exit",
"printc": "putchar",
"printi": "putnum",
"readc": "getchar",
"readi": "getnum"
},
"usage": ["enum"]
},
"programs": [
{ "path": "brainfuck.ws", "spec_version": "0.3" },
{ "path": "fizzbuzz.ws", "spec_version": "0.2" }
],
"commands": [
{ "type": "interpreter", "bin": "whitespace.lol", "input": "filename from stdin", "output": "stdout" }
]
}