diff --git a/CHANGELOG.md b/CHANGELOG.md index b3e08c88..70726437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change log -## Current version +## 0.3.18 (2020-04-08) * Support for Motorola 6809 (complete, but still experimental). diff --git a/README.md b/README.md index ea6e765c..dac5f17b 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ # Millfork -A middle-level programming language targeting 6502-based, 8080-based and Z80-based microcomputers. +A middle-level programming language targeting 6502-based, 8080-based, Z80-based and 6809-based microcomputers. For binary releases, see: [https://github.com/KarolS/millfork/releases](https://github.com/KarolS/millfork/releases) -(latest: 0.3.16). +(latest: 0.3.18). For build instructions, see [Build instructions](./COMPILING.md). ## Features @@ -28,15 +28,17 @@ For build instructions, see [Build instructions](./COMPILING.md). * Game Boy (experimental) + * Tandy Color Computer (experimental) + * MS-DOS (very experimental, via 8080-to-8086 translation) * multiple supported target processors: * well supported: MOS 6502, Ricoh 2A03/2A07, WDC 65C02, Intel 8080, Intel 8085, Zilog Z80 - * reasonably well supported: Sharp LR35902, CSG 65CE02 + * reasonably well supported: Sharp LR35902, CSG 65CE02, Motorola 6809 - * partially supported: Hudson Soft HuC6280, WDC 65816, Intel 8086, Motorola 6809 + * partially supported: Hudson Soft HuC6280, WDC 65816, Intel 8086 * inline assembly diff --git a/build.sbt b/build.sbt index a0accb76..c37966a0 100644 --- a/build.sbt +++ b/build.sbt @@ -1,8 +1,8 @@ name := "millfork" -version := "0.3.17-SNAPSHOT" +version := "0.3.18" -scalaVersion := "2.12.12" +scalaVersion := "2.12.11" resolvers += Resolver.mavenLocal diff --git a/examples/README.md b/examples/README.md index 0c4b55b0..52821a01 100644 --- a/examples/README.md +++ b/examples/README.md @@ -3,6 +3,8 @@ The examples showcased here are designed to compile with a compiler built from newest sources. If you are using a release version of the compiler, consider browsing the older versions of the examples: +* [for version 0.3.18](https://github.com/KarolS/millfork/tree/v0.3.18/examples) + * [for version 0.3.16](https://github.com/KarolS/millfork/tree/v0.3.16/examples) * [for version 0.3.14](https://github.com/KarolS/millfork/tree/v0.3.14/examples)