Skip to content

Commit

Permalink
reset version
Browse files Browse the repository at this point in the history
MESYETI committed Apr 3, 2024
1 parent 0ecb82f commit 7ce01d2
Showing 3 changed files with 19 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,10 @@
Callisto is a reverse polish notation programming
language inspired by YSL-C3 and Forth

## Supported targets
- x86 real mode (complete)
- YETI-16 Mk2 (in progress)

## Build
```
dub build
5 changes: 3 additions & 2 deletions source/app.d
Original file line number Diff line number Diff line change
@@ -120,7 +120,8 @@ int main(string[] args) {
break;
}
case "y16": {
goto default;
backend = new BackendY16();
break;
}
default: {
stderr.writefln("Unknown backend '%s'", args[i]);
@@ -129,7 +130,7 @@ int main(string[] args) {
break;
}
case "--version": {
writeln("Callisto compiler beta release 0.1");
writeln("Callisto compiler development version");
break;
}
default: {
12 changes: 12 additions & 0 deletions source/backends/c.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module callisto.backends.c;

import std.conv;
import std.stdio;
import std.range;
import std.format;
import std.algorithm;
import callisto.util;
import callisto.error;
import callisto.parser;
import callisto.compiler;
import callisto.language;

0 comments on commit 7ce01d2

Please sign in to comment.