-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
46 lines (46 loc) · 1.32 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
{
"id": "python/mildsunrise",
"name": "whitespace.py",
"authors": ["Alba Mendez"],
"license": "none",
"languages": ["Python"],
"tags": ["interpreter"],
"date": "2018-01-14 16:05:13 +0100",
"spec_version": "0.2",
"source": ["https://gist.github.com/mildsunrise/d948fe1334f36c9a0f6516e58271f936"],
"submodules": [
{
"path": "whitespace",
"url": "https://gist.github.com/mildsunrise/d948fe1334f36c9a0f6516e58271f936"
}
],
"bounds": { "heap_min": "unbounded", "heap_max": "unbounded" },
"assembly": {
"mnemonics": {
"push": "stack_push",
"dup": "stack_dup",
"swap": "stack_swap",
"drop": "stack_pop",
"add": "arithmetic_add",
"sub": "arithmetic_sub",
"mul": "arithmetic_mul",
"div": "arithmetic_div",
"mod": "arithmetic_mod",
"store": "heap_store",
"retrieve": "heap_retrieve",
"label": "flow_label",
"call": "flow_call",
"jmp": "flow_jump",
"jz": "flow_jump_if_zero",
"jn": "flow_jump_if_neg",
"ret": "flow_return",
"end": "flow_exit",
"printc": "io_output_char",
"printi": "io_output_number",
"readc": "io_input_char",
"readi": "io_input_number"
},
"usage": ["enum"]
},
"commands": [{ "type": "interpreter", "bin": "whitespace.py", "usage": "<file>" }]
}