-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
49 lines (49 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
{
"id": "javascript/kmyk-translater",
"name": "whitespace-translater",
"authors": ["Kimiyuki Onaka"],
"license": "MIT",
"languages": ["JavaScript"],
"tags": ["assembler", "disassembler", "mapping"],
"date": "2015-03-01 21:07:23 +0900",
"spec_version": "0.3",
"source": [
"https://github.com/kmyk/whitespace-translater",
"https://web.archive.org/web/20160205175221/http://solorab.net:80/works/whitespace-translater/",
"https://web.archive.org/web/20160206165019/http://solorab.net:80/blog/2015/03/01/made-whitespace-translater/"
],
"submodules": [{ "path": "whitespace-translater", "url": "https://github.com/kmyk/whitespace-translater" }],
"assembly": {
"mnemonics": {
"push": "PUSH",
"dup": "DUP",
"copy": "COPYNTH",
"swap": "SWAP",
"drop": "DISCARD",
"slide": "SLIDE",
"add": "ADD",
"sub": "SUB",
"mul": "MULT",
"div": "DIV",
"mod": "MOD",
"store": "STORE",
"retrieve": "RETRIEVE",
"label": "LABEL",
"call": "CALL",
"jmp": "JUMP",
"jz": "JUMPZERO",
"jn": "JUMPNEG",
"ret": "RETURN",
"end": "EXIT",
"printc": "PUTCHAR",
"printi": "PUTNUM",
"readc": "GETCHAR",
"readi": "GETNUM"
},
"case_sensitive_mnemonics": true,
"line_comments": ["#"],
"indentation": "",
"usage": ["assembler", "disassembler"]
},
"mappings": [{ "space": "S", "tab": "T", "lf": "\n" }]
}