-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
59 lines (59 loc) · 1.76 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
{
"id": "ruby/yhara-esolang-book",
"name": "Rubyで作る奇妙なプログラミング言語 (Making Esoteric Languages in Ruby)",
"authors": ["原 悠 (Yutaka HARA)"],
"license": "none",
"languages": ["Ruby"],
"tags": ["book", "interpreter", "programs"],
"date": "2013-07-14 18:21:34 +0900",
"spec_version": "0.3",
"source": [
"https://github.com/yhara/esolang-book-sources",
"https://esolang-book.route477.net/",
"https://github.com/yhara/esolang-book-website",
"https://www.amazon.com/dp/4839927847"
],
"submodules": [{ "path": "esolang-book-sources", "url": "https://github.com/yhara/esolang-book-sources" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "push",
"dup": "dup",
"copy": "copy",
"swap": "swap",
"drop": "discard",
"slide": "slide",
"add": "add",
"sub": "sub",
"mul": "mul",
"div": "div",
"mod": "mod",
"store": "heap_write",
"retrieve": "heap_read",
"label": "label",
"call": "call",
"jmp": "jump",
"jz": "jump_zero",
"jn": "jump_negative",
"ret": "return",
"end": "exit",
"printc": "char_out",
"printi": "num_out",
"readc": "char_in",
"readi": "num_in"
},
"usage": ["enum"]
},
"mappings": [{ "space": "[Space]", "tab": "[Tab]", "lf": "[LF]", "extension": "txt" }],
"programs": [
{
"path": "whitespace/hello.ws",
"aux": ["1-4/02.txt", "1-4/01.ws"],
"mapping_index": 0,
"spec_version": "0.2",
"authors": ["Yutaka HARA"]
},
{ "path": "whitespace/hi.ws", "spec_version": "0.2", "authors": ["Yutaka HARA"] },
{ "path": "_practices/forever_a.ws", "spec_version": "0.2", "authors": ["Yutaka HARA"] }
]
}