From 164ac56db13bc4957e2532520d4c2ea9be7e5b1f Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Wed, 1 Jul 2020 22:31:38 +0200 Subject: [PATCH] compiler error todos --- examples/cube3d-sprites.p8 | 3 +++ examples/line-circle-gfx.p8 | 3 +++ examples/mandelbrot-gfx.p8 | 3 +++ examples/structs.p8 | 3 +++ examples/turtle-gfx.p8 | 1 + 5 files changed, 13 insertions(+) diff --git a/examples/cube3d-sprites.p8 b/examples/cube3d-sprites.p8 index 54f62caed..069b692b3 100644 --- a/examples/cube3d-sprites.p8 +++ b/examples/cube3d-sprites.p8 @@ -1,6 +1,9 @@ %import c64lib %import c64utils +; TODO fix compiler errors when compiling without optimizations + + spritedata $2000 { ; this memory block contains the sprite data ; it must start on an address aligned to 64 bytes. diff --git a/examples/line-circle-gfx.p8 b/examples/line-circle-gfx.p8 index 509856583..570aa7b4e 100644 --- a/examples/line-circle-gfx.p8 +++ b/examples/line-circle-gfx.p8 @@ -1,6 +1,9 @@ %import c64lib %import c64graphics +; TODO fix compiler errors when compiling without optimizations + + main { sub start() { diff --git a/examples/mandelbrot-gfx.p8 b/examples/mandelbrot-gfx.p8 index 02f03c333..96aa50cb4 100644 --- a/examples/mandelbrot-gfx.p8 +++ b/examples/mandelbrot-gfx.p8 @@ -7,6 +7,9 @@ ; NOTE: this will take an eternity to draw on a real c64. ; even in Vice in warp mode (700% speed on my machine) it's slow, but you can see progress +; TODO fix compiler errors when compiling without optimizations + + main { const ubyte width = 255 const ubyte height = 200 diff --git a/examples/structs.p8 b/examples/structs.p8 index 3719a8970..7b55fdbbb 100644 --- a/examples/structs.p8 +++ b/examples/structs.p8 @@ -1,6 +1,9 @@ %import c64utils %zeropage basicsafe +; TODO fix compiler errors when compiling without optimizations + + main { struct Color { diff --git a/examples/turtle-gfx.p8 b/examples/turtle-gfx.p8 index 1273d0114..a0c8e1290 100644 --- a/examples/turtle-gfx.p8 +++ b/examples/turtle-gfx.p8 @@ -3,6 +3,7 @@ %import c64graphics %option enable_floats +; TODO fix compiler errors when compiling without optimizations main {