From 25d2b4228338e032bcd78f19f80b58ee81e29c4f Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Sat, 9 Nov 2024 16:03:16 +0100 Subject: [PATCH] textelite now with sysinit, so it runs on the c128 as well (needs banking) --- docs/source/todo.rst | 2 ++ examples/textelite.p8 | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/todo.rst b/docs/source/todo.rst index d0a2a493b..5962e27eb 100644 --- a/docs/source/todo.rst +++ b/docs/source/todo.rst @@ -3,9 +3,11 @@ TODO ... + Future Things and Ideas ^^^^^^^^^^^^^^^^^^^^^^^ +- Port the diskio module to the PET using lower level serial kernal IO calls? - something to reduce the need to use fully qualified names all the time. 'with' ? Or 'using '? - Why are blocks without an addr moved BEHIND a block with an address? That's done in the StatementReorderer. - Libraries: improve ability to create library files in prog8; for instance there's still stuff injected into the start of the start() routine AND there is separate setup logic going on before calling it. diff --git a/examples/textelite.p8 b/examples/textelite.p8 index 95cbffb5e..204d83b86 100644 --- a/examples/textelite.p8 +++ b/examples/textelite.p8 @@ -2,7 +2,6 @@ %import conv %import diskio %import string -%option no_sysinit %zeropage basicsafe ; Prog8 adaptation of the Text-Elite galaxy system trading simulation engine.