From 629222f103b5e5dfc5aac27a6900f1ef4aa27bb4 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Sat, 26 Sep 2020 19:59:57 +0200 Subject: [PATCH] larger --- examples/diskdir.p8 | 2 ++ examples/fibonacci.p8 | 2 ++ examples/hello.p8 | 2 ++ examples/swirl.p8 | 3 +++ 4 files changed, 9 insertions(+) diff --git a/examples/diskdir.p8 b/examples/diskdir.p8 index adcd6386a..920a015b7 100644 --- a/examples/diskdir.p8 +++ b/examples/diskdir.p8 @@ -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") diff --git a/examples/fibonacci.p8 b/examples/fibonacci.p8 index ab7b3222c..3ddeb75e2 100644 --- a/examples/fibonacci.p8 +++ b/examples/fibonacci.p8 @@ -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") diff --git a/examples/hello.p8 b/examples/hello.p8 index 25e099eb2..8d4580435 100644 --- a/examples/hello.p8 +++ b/examples/hello.p8 @@ -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() { diff --git a/examples/swirl.p8 b/examples/swirl.p8 index b2424f594..d28ccfca8 100644 --- a/examples/swirl.p8 +++ b/examples/swirl.p8 @@ -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