-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
43 lines (43 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
{
"id": "ocaml/progbits-blank",
"name": "Blank",
"authors": ["progbits"],
"license": "MIT",
"languages": ["OCaml"],
"tags": ["interpreter", "programs"],
"date": "2021-03-16 22:01:08 +0000",
"spec_version": "0.2",
"source": ["https://github.com/progbits/blank"],
"submodules": [{ "path": "blank", "url": "https://github.com/progbits/blank" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "Push",
"dup": "Duplicate",
"swap": "Swap",
"drop": "Discard",
"add": "Addtion",
"sub": "Subtraction",
"mul": "Multiplication",
"div": "Division",
"mod": "Modulo",
"store": "Store",
"retrieve": "Retrieve",
"label": "Mark",
"call": "Call",
"jmp": "UnconditionalJump",
"jz": "JumpZero",
"jn": "JumpNegative",
"ret": "EndSubroutine",
"end": "EndProgram",
"printc": "OutputCharacter",
"printi": "OutputNumber",
"readc": "ReadCharacter",
"readi": "ReadNumber"
},
"usage": ["enum"]
},
"programs": [{ "path": "examples/fizz-buzz.ws", "spec_version": "0.2" }],
"build_errors": "Module Stdlib.Stream is deprecated and the camlp-streams library should be used instead",
"commands": [{ "type": "interpreter", "bin": "_build/default/blank.exe", "usage": "<file>" }]
}