forked from wspace/corpus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
40 lines (40 loc) · 1.01 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
{
"id": "csharp/jlchntoz",
"name": "Whitespace.Compiler.cs",
"description": "Compiles to MSIL executable using the .NET System.Reflection.Emit API",
"authors": ["Jeremy Lam (Vistanz)"],
"license": "none",
"languages": ["C#"],
"tags": ["compiler"],
"date": "2017-02-14 18:29:47 +0800",
"spec_version": "0.2",
"source": ["https://gist.github.com/JLChnToZ/42bade0f3d4b9e671bcedaafe1000c86"],
"assembly": {
"mnemonics": {
"push": ["Pus"],
"dup": ["Dup"],
"swap": ["Swp"],
"drop": ["Pop"],
"add": ["Add"],
"sub": ["Sub"],
"mul": ["Mul"],
"div": ["Div"],
"mod": ["Mod"],
"store": ["Sto"],
"retrieve": ["Ret"],
"label": ["Mrk"],
"call": ["Cas"],
"jmp": ["Jmp"],
"jz": ["Jmz"],
"jn": ["Jmn"],
"ret": ["Ens"],
"end": ["End"],
"printc": ["Wrc"],
"printi": ["Wrn"],
"readc": ["Rec"],
"readi": ["Ren"]
},
"usage": ["enum"]
},
"build_errors": "Need to restructure files"
}