Skip to content

Commit

Permalink
delete the win64 core
Browse files Browse the repository at this point in the history
  • Loading branch information
MESYETI committed Apr 27, 2024
1 parent 03274e2 commit 850585f
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 115 deletions.
6 changes: 0 additions & 6 deletions source/app.d
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ Flags:
Backends:
rm86 - Real mode x86 and MS-DOS
linux86 - Linux for 64-bit x86
win64 - Windows for 64-bit x86 (Work in progress)
";

int main(string[] args) {
Expand Down Expand Up @@ -132,11 +131,6 @@ int main(string[] args) {
backend = new BackendLinux86();
break;
}
case "win64": {
stderr.writeln("WARNING: Unstable backend");
backend = new BackendWin64();
break;
}
default: {
stderr.writefln("Unknown backend '%s'", args[i]);
}
Expand Down
107 changes: 0 additions & 107 deletions source/backends/win64.d

This file was deleted.

2 changes: 1 addition & 1 deletion source/compiler.d
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class Compiler {
auto node = cast(RequiresNode) inode;

if (!versions.canFind(node.ver)) {
backend.Error(node.error, "Version '%s' required");
backend.Error(node.error, "Version '%s' required", node.ver);
}
break;
}
Expand Down
2 changes: 1 addition & 1 deletion std

0 comments on commit 850585f

Please sign in to comment.