compiler error todos

This commit is contained in:
Irmen de Jong 2020-07-01 22:31:38 +02:00
parent fdddb8ca64
commit 164ac56db1
5 changed files with 13 additions and 0 deletions

View File

@ -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.

View File

@ -1,6 +1,9 @@
%import c64lib
%import c64graphics
; TODO fix compiler errors when compiling without optimizations
main {
sub start() {

View File

@ -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

View File

@ -1,6 +1,9 @@
%import c64utils
%zeropage basicsafe
; TODO fix compiler errors when compiling without optimizations
main {
struct Color {

View File

@ -3,6 +3,7 @@
%import c64graphics
%option enable_floats
; TODO fix compiler errors when compiling without optimizations
main {