-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
44 lines (44 loc) · 1.09 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
{
"id": "python/mikejs-nbspy",
"name": "nbspy.py",
"authors": ["Michael Stephens"],
"license": "none",
"languages": ["Python"],
"tags": ["interpreter"],
"date": "2011-04-13 17:25:01 -0700",
"spec_version": "0.2",
"source": ["https://gist.github.com/mikejs/918701"],
"submodules": [{ "path": "nbspy", "url": "https://gist.github.com/mikejs/918701" }],
"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": "STORE",
"retrieve": "RETR",
"label": "MARK",
"call": "CALL",
"jmp": "JMP",
"jz": "JMPZ",
"jn": "JMPN",
"ret": "END",
"end": "END_PROG",
"printc": "OUT_CHAR",
"printi": "OUT_NUM",
"readc": "READ_CHAR",
"readi": "READ_NUM"
},
"usage": ["enum"]
},
"commands": [
{ "type": "interpreter", "bin": "nbspy.py", "usage": "<file>", "input": "<file>", "output": "stdout" }
]
}