-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
49 lines (49 loc) · 1.18 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": "go/makiuchid-whitenote",
"name": "whitenote",
"authors": ["MakKi"],
"license": "MIT",
"languages": ["Go"],
"tags": ["Jupyter kernel", "interpreter"],
"date": "2022-07-06 22:34:18 +0900",
"spec_version": "0.3",
"source": ["https://github.com/makiuchi-d/whitenote"],
"submodules": [{ "path": "whitenote", "url": "https://github.com/makiuchi-d/whitenote" }],
"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": "Retrieve",
"label": "Mark",
"call": "Call",
"jmp": "Jump",
"jz": "JZero",
"jn": "JNeg",
"ret": "Ret",
"end": "End",
"printc": "WriteChar",
"printi": "WriteNum",
"readc": "ReadChar",
"readi": "ReadNum"
},
"usage": ["enum"]
},
"commands": [
{ "type": "Jupyter kernel" },
{
"type": "interpreter",
"usage": "[<program>]",
"notes": "When <program> is omitted, it runs an interactive interpreter"
}
]
}