This commit is contained in:
Irmen de Jong 2020-09-26 19:59:57 +02:00
parent 8c448e5bc2
commit 629222f103
4 changed files with 9 additions and 0 deletions

View File

@ -5,6 +5,8 @@
; This example shows the directory contents of disk drive 8.
; TODO why is this larger than on the previous compiler version?
main {
sub start() {
txt.print("directory of disk drive #8:\n\n")

View File

@ -4,6 +4,8 @@
; This example computes the first 20 values of the Fibonacci sequence.
; Note: this program is compatible with C64 and CX16.
; TODO why is this larger than on the previous compiler version?
main {
sub start() {
txt.print("fibonacci sequence\n")

View File

@ -5,6 +5,8 @@
; Note: this program is compatible with C64 and CX16.
; TODO why is this larger than on the previous compiler version?
main {
sub start() {

View File

@ -3,6 +3,9 @@
; Note: this program is compatible with C64 and CX16.
; TODO why is this larger than on the previous compiler version?
main {
const uword screenwidth = txt.DEFAULT_WIDTH
const uword screenheight = txt.DEFAULT_HEIGHT