From 4b98f334fcbcd9511ba8744b5d19a42def87f469 Mon Sep 17 00:00:00 2001 From: Karol Stasiak Date: Tue, 30 Jul 2019 22:51:33 +0200 Subject: [PATCH] Update CHANGELOG --- .gitignore | 3 +++ CHANGELOG.md | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index d978f065..c84b85ff 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,9 @@ src/test/scala/experiments/ # doesn't work yet examples/lunix/ +# may become a feature in the future +*.tbl + # hidden files *.~ diff --git a/CHANGELOG.md b/CHANGELOG.md index 4588a0e0..5ff346cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.