-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
44 lines (44 loc) · 1.25 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": "rust/hamidrezakp",
"name": "ws",
"authors": ["Hamid R. K. Pisghadam"],
"license": "none",
"languages": ["Rust"],
"tags": ["parser", "programs"],
"date": "2022-07-09 02:08:17 +0430",
"spec_version": "0.3",
"source": ["https://github.com/hamidrezakp/ws"],
"submodules": [{ "path": "ws", "url": "https://github.com/hamidrezakp/ws" }],
"assembly": {
"mnemonics": {
"push": "Push",
"dup": "Duplicate",
"copy": "DuplicateNth",
"swap": "Swap",
"drop": "Discard",
"slide": "DiscardTopN",
"add": "Sum",
"sub": "Sub",
"mul": "Mul",
"div": "Div",
"mod": "Rem",
"store": "StoreAt",
"retrieve": "StoreAtStack",
"label": "Mark",
"call": "Call",
"jmp": "Jump",
"jz": "BranchZero",
"jn": "BranchLt",
"ret": "Return",
"end": "Exit",
"printc": "PrintChar",
"printi": "PrintNum",
"readc": "ReadChar",
"readi": "ReadNum"
},
"usage": ["enum", "debug"]
},
"mappings": [{ "space": "S", "tab": "T", "lf": "L", "before_stl": true }],
"programs": [{ "path": "examples/main.ws", "spec_version": "0.2" }],
"commands": [{ "type": "parser", "bin": "target/release/ws", "usage": "<program>", "input": "<program>" }]
}