We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0758460 commit 8b97e1dCopy full SHA for 8b97e1d
examples/min_max.cal
source/app.d
@@ -9,7 +9,6 @@ import callisto.compiler;
9
import callisto.language;
10
import callisto.optimiser;
11
import callisto.preprocessor;
12
-import callisto.backends.y16;
13
import callisto.backends.rm86;
14
import callisto.backends.linux86;
15
@@ -30,7 +29,6 @@ Flags:
30
29
31
Backends:
32
rm86 - Real mode x86 and MS-DOS
33
- y16 - YETI-16 Mk2 (Unstable and incomplete)
34
linux86 - Linux for 64-bit x86
35
";
36
@@ -128,11 +126,6 @@ int main(string[] args) {
128
126
backend = new BackendRM86();
129
127
break;
130
}
131
- case "y16": {
132
- stderr.writeln("WARNING: Unstable and unfinished backend");
133
- backend = new BackendY16();
134
- break;
135
- }
136
case "linux86": {
137
backend = new BackendLinux86();
138
source/backends/y16.d
0 commit comments