1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-10-31 14:04:58 +00:00

Update changelog

This commit is contained in:
Karol Stasiak 2019-10-22 02:14:14 +02:00
parent 138c185ed1
commit 54c7a6b511
2 changed files with 17 additions and 1 deletions

View File

@ -6,9 +6,21 @@
* Added the ability to define custom segment layouts.
* Hardware definitions for Atari 8-bit (thanks to @FreddyOffenga)
* Fixed BLL headers for Atari Lynx (#7).
* Some improvements for Commander X16 (with help from @Ambez05)
* Specified consistent behaviour of `for` loops (#8)
* Fixed bugs with constant booleans.
* Fixes bugs with arithmetic promotions of signed values.
* Fixed bugs with arithmetic promotions of signed values.
* Fixed a bug with unused global variable elimination (#10).
* Fixed a bug with variable overlapping (#11).
* 8080: Optimized some library functions.

View File

@ -55,6 +55,10 @@ how to create a program made of multiple files loaded on demand
* [Lynx demo example](atari_lynx/atari_lynx_demo.mfk) a simple sprite demo
## Atari 8-bit examples
* [Rainbow example](a8/rainbow.mfk) simple scrolling rasterbars
## Game Boy examples
* [GB test example](gb/gbtest.mfk) a partial port of the NES example, with a rudimentary experimental text output implementation