-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
48 lines (48 loc) · 1.69 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
{
"id": "whitespace/mrbubble-markov",
"name": "Markov Algorithm simulator",
"authors": ["Leonardo Mesquita"],
"license": "Public-Domain",
"languages": ["Whitespace"],
"tags": ["programs"],
"date": "2007-02-24 21:56:00 +0000",
"spec_version": "0.2",
"source": [
"https://web.archive.org/web/20141011193203/http://compsoc.dur.ac.uk/archives/whitespace/attachments/20070224/2792d9db/markov.zip",
"https://web.archive.org/web/20070830102217/http://compsoc.dur.ac.uk:80/archives/whitespace/2007-February/000054.html",
"https://web.archive.org/web/20070831081100/http://compsoc.dur.ac.uk:80/archives/whitespace/2007-February/000055.html",
"https://github.com/wspace/mrbubble-markov",
"https://github.com/thaliaarchi/repo-archival/blob/main/scripts/wspace/mrbubble-markov.sh"
],
"submodules": [{ "path": "markov", "url": "https://github.com/wspace/mrbubble-markov" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "push",
"dup": "dup",
"swap": "swap",
"drop": "discard",
"add": "add",
"sub": "sub",
"store": "store",
"retrieve": "retrieve",
"label": "<label>:",
"call": "call",
"jmp": "jump",
"jz": "jz",
"jn": "jn",
"ret": "ret",
"end": "exit",
"printc": "outchar",
"readc": "readchar",
"readi": "readnum"
},
"patterns": { "label": "[a-zA-Z_]+", "number": "\\d+" },
"line_comments": ["#"],
"indentation": " ",
"usage": ["programs"],
"extension": "wsa"
},
"programs": [{ "path": "markov.wsa", "generated": "markov.ws", "inputs": ["input.mkv"], "spec_version": "0.2" }],
"notes": "Date from earliest file in archive"
}