forked from wspace/corpus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.json
42 lines (42 loc) · 1.02 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
{
"id": "ruby/bossiernesto",
"name": "whitespace",
"authors": ["Ernesto Bossi"],
"license": "GPL-3.0-or-later",
"languages": ["Ruby"],
"tags": ["assembler"],
"date": "2012-10-15 09:37:19 -0300",
"spec_version": "0.2",
"source": ["https://github.com/bossiernesto/whitespace"],
"assembly": {
"mnemonics": {
"push": ["push"],
"dup": ["dup"],
"swap": ["swap"],
"drop": ["discard"],
"add": ["add"],
"sub": ["sub"],
"mul": ["mul"],
"div": ["div"],
"mod": ["mod"],
"store": ["store"],
"retrieve": ["retrieve"],
"label": ["<label>:", "label"],
"call": ["call"],
"jmp": ["jump"],
"jz": ["jz"],
"jn": ["jn"],
"ret": ["ret"],
"end": ["exit"],
"printc": ["outchar"],
"printi": ["outnum"],
"readc": ["readchar"],
"readi": ["readnum"]
},
"line_comments": ["#"],
"usage": ["assembler"],
"extension": "wsa"
},
"run_errors": "No entrypoint",
"commands": [{ "type": "assembler" }]
}