-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
43 lines (43 loc) · 1.22 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": "cpp/ricardoluis0",
"name": "whitespace",
"authors": ["Ricardo Luís Vaz Silva"],
"license": "Unlicense",
"languages": ["C++"],
"tags": ["interpreter"],
"date": "2020-06-03 01:52:57 -0300",
"spec_version": "0.3",
"source": ["https://github.com/RicardoLuis0/whitespace"],
"submodules": [{ "path": "whitespace", "url": "https://github.com/RicardoLuis0/whitespace" }],
"assembly": {
"mnemonics": {
"push": "STACK_PSH",
"dup": "STACK_DUP",
"copy": "STACK_DUPN",
"swap": "STACK_SWP",
"drop": "STACK_POP",
"slide": "STACK_POPN",
"add": "MATH_ADD",
"sub": "MATH_SUB",
"mul": "MATH_MUL",
"div": "MATH_DIV",
"mod": "MATH_MOD",
"store": "MEM_STORE",
"retrieve": "MEM_LOAD",
"label": "FC_LBL",
"call": "FC_CSR",
"jmp": "FC_JMP",
"jz": "FC_JZ",
"jn": "FC_JN",
"ret": "FC_RET",
"end": "FC_END",
"printc": "IO_OC",
"printi": "IO_ON",
"readc": "IO_IC",
"readi": "IO_IN"
},
"usage": ["enum"]
},
"build_errors": "`#include <conio.h>` not found; `floor` cannot be used in a constant expression",
"commands": [{ "type": "interpreter", "bin": "whitespace", "usage": "<file>" }]
}