-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
48 lines (48 loc) · 1.3 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
{
"id": "cpp/codesiiita-spoj",
"name": "SPOJ",
"authors": ["Codes-iiita"],
"license": "none",
"languages": ["C++"],
"tags": ["assembler", "programs"],
"date": "2021-09-23 14:57:48 +0530",
"spec_version": "0.3",
"source": ["https://github.com/Codes-iiita/SPOJ"],
"submodules": [{ "path": "SPOJ", "url": "https://github.com/Codes-iiita/SPOJ" }],
"challenges": ["Sphere Online Judge"],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "push",
"dup": "dup",
"copy": "copy",
"swap": "swap",
"drop": "pop",
"slide": "slide",
"add": "add",
"sub": "sub",
"mul": "mul",
"div": "div",
"mod": "mod",
"store": "store",
"retrieve": "load",
"label": "label",
"call": "call",
"jmp": "jump",
"jz": "jzero",
"jn": "jneg",
"ret": "ret",
"end": "exit",
"printc": "writec",
"printi": "writen",
"readc": "readc",
"readi": "readn"
},
"case_sensitive_mnemonics": true,
"line_comments": ["#"],
"usage": ["assembler", "programs"],
"extension": ""
},
"programs": [{ "path": "sbstr1", "generated": "sbstr1.ws", "spec_version": "0.2" }],
"commands": [{ "type": "assembler", "bin": "wstp", "input": "stdin", "output": "stdout" }]
}