forked from wspace/corpus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
56 lines (56 loc) · 1.71 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
50
51
52
53
54
55
56
{
"id": "csharp/rolisoft-esoteric",
"name": "Esoteric Code Interpreter",
"authors": ["Roland Bogosi"],
"license": "GPL-3.0-or-later",
"languages": ["C#"],
"tags": ["interpreter", "disassembler"],
"date": "2010-10-11 09:33:25 +0300",
"spec_version": "0.2",
"source": ["https://github.com/RoliSoft/Esoteric-Code-Interpreter"],
"assembly": {
"mnemonics": {
"push": ["push"],
"dup": ["dup"],
"swap": ["swap"],
"drop": ["pop"],
"add": ["add"],
"sub": ["sub"],
"mul": ["mul"],
"div": ["div"],
"mod": ["mod"],
"store": ["store"],
"retrieve": ["retr"],
"label": ["label"],
"call": ["call"],
"jmp": ["jmp"],
"jz": ["jz"],
"jn": ["jn"],
"ret": ["ret"],
"end": ["exit"],
"printc": ["outchar"],
"printi": ["outnum"],
"readc": ["readchar"],
"readi": ["readnum"]
},
"indentation": "",
"usage": ["disassembler"]
},
"commands": [
{
"type": "interactive",
"bin": "bin/Release/EsotericCodeInterpreter.exe",
"usage": "",
"subcommands": [
{ "name": "start", "desc": "interpret program written in CLI" },
{ "name": "load", "desc": "interpret program from a file" },
{ "name": "disasm", "desc": "disassemble into a more understandable assembly-like language" },
{ "name": "help", "desc": "display help" },
{ "name": "clear", "desc": "clear console" },
{ "name": "exit", "desc": "exit CLI" }
],
"notes": "Subcommands are entered interactively"
}
],
"notes": "Disassembles program trace, including escaped output. Also interprets Brainfuck (and Ook! and Spoon variants), Byter, and Befunge93 programs"
}