1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-25 19:29:49 +00:00

Update CHANGELOG

This commit is contained in:
Karol Stasiak 2019-07-30 22:51:33 +02:00
parent 22b4776139
commit 4b98f334fc
2 changed files with 7 additions and 0 deletions

3
.gitignore vendored
View File

@ -9,6 +9,9 @@ src/test/scala/experiments/
# doesn't work yet
examples/lunix/
# may become a feature in the future
*.tbl
# hidden files
*.~

View File

@ -6,6 +6,8 @@
The `petscii` encoding now uses the $C0-$DE range for uppercase characters instead of $60-$7E.
This matches both the CC65 behaviour and the return values from `readkey()`.
* Added support for the Japanese version of Commodore 64.
* Added `segment` block statement.
* Added goto.
@ -16,6 +18,8 @@ This matches both the CC65 behaviour and the return values from `readkey()`.
* Added arrays of elements of size greater than byte.
* Added `.length` for large arrays and `.lastindex` for numerically indexed arrays.
* Improved passing of register parameters to assembly functions.
* Enabled declaring multiple variables in one line.