-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
47 lines (47 loc) · 1.35 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
{
"id": "c/meth0dz",
"name": "Whitespace Interpreter v1.0",
"authors": ["MeTh0Dz"],
"license": "CC-BY-SA-3.0-US",
"languages": ["C"],
"tags": ["interpreter"],
"date": "2010-02-01 01:56:47 +0000",
"spec_version": "0.3",
"source": [
"http://www.rohitab.com/discuss/topic/35639-c-whitespace-interpreter/",
"https://github.com/hostilefork/whitespacers/tree/master/c",
"https://github.com/wspace/meth0dz-c"
],
"submodules": [{ "path": "whitespace", "url": "https://github.com/wspace/meth0dz-c" }],
"assembly": {
"mnemonics": {
"push": "stack_push",
"dup": "stack_dup",
"copy": "stack_copy",
"swap": "stack_swap",
"drop": "stack_discard",
"slide": "stack_slide",
"add": "math_add",
"sub": "math_sub",
"mul": "math_mult",
"div": "math_div",
"mod": "math_mod",
"store": "heap_store",
"retrieve": "heap_retrieve",
"label": "flow_mark",
"call": "flow_call",
"jmp": "flow_jump",
"jz": "flow_jz",
"jn": "flow_jn",
"ret": "flow_ret",
"end": "flow_exit",
"printc": "io_outc",
"printi": "io_outn",
"readc": "io_inc",
"readi": "io_inn"
},
"usage": ["enum"]
},
"commands": [{ "type": "interpreter", "bin": "whitespace", "usage": "<file>" }],
"todo": "Automate repo-construction in repo-archival."
}