From cefef3d1be47163e1e5d415f7ac92d0270655f41 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Sat, 6 Feb 2021 15:22:31 +0100 Subject: [PATCH] todo --- docs/source/todo.rst | 2 ++ examples/test.p8 | 13 +------------ 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/docs/source/todo.rst b/docs/source/todo.rst index 6ac6c8a2a..28dd0d71c 100644 --- a/docs/source/todo.rst +++ b/docs/source/todo.rst @@ -2,6 +2,8 @@ TODO ==== +- fix imageviewer application with new Prog8 6.1 version - images are all corrupted now.... :( + - refactor the project module structure: make the static ast stuff a separate module, the optimizers another one, etc. - optimize for loop iterations better to allow proper inx, cpx #value, bne loop instructions (like repeat loop) - implement the linked_list millfork benchmark diff --git a/examples/test.p8 b/examples/test.p8 index eb841bdcf..22a8ab335 100644 --- a/examples/test.p8 +++ b/examples/test.p8 @@ -1,20 +1,9 @@ %import textio -%import palette -%import syslib %zeropage basicsafe main { sub start() { - ubyte lower2_x_bits=1 - ubyte cbits4 - ubyte operand - - cbits4 &= operand - cbits4 |= operand - - ;cbits4 &= gfx2.plot.mask4c[lower2_x_bits] ; TODO why lda..and instead of and mask,y? - ;cbits4 |= colorbits[lower2_x_bits] ; TODO why lda..ora instead of ora mask,y? - + txt.print("hello") } }