mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 15:33:02 +00:00
example TODOs
This commit is contained in:
parent
824b41d457
commit
d2ab5f230d
@ -686,7 +686,7 @@ internal class ExpressionsAsmGen(private val program: Program, private val asmge
|
||||
code("#>${rightConstVal.number}", "#<${rightConstVal.number}")
|
||||
}
|
||||
else {
|
||||
// TODO is this correct? word > 0
|
||||
// TODO is this correct? word > 0 can be shorter as well?
|
||||
val name = asmgen.asmVariableName(left)
|
||||
asmgen.out("""
|
||||
lda #0
|
||||
|
@ -5,6 +5,9 @@
|
||||
; Vertical rasterbars a.k.a. "Kefren bars"
|
||||
; also see: rasterbars.p8
|
||||
|
||||
; TODO exhibits tearing since recent compiler changes????
|
||||
|
||||
|
||||
main {
|
||||
|
||||
sub start() {
|
||||
|
@ -17,7 +17,7 @@ main {
|
||||
|
||||
irq {
|
||||
|
||||
const ubyte barheight = 4 ; should be big enough to re-trigger the Raster irq properly.
|
||||
const ubyte barheight = 3 ; should be big enough to re-trigger the Raster irq properly.
|
||||
ubyte[] colors = [6,2,4,5,15,7,1,13,3,12,8,11,9]
|
||||
ubyte color = 0
|
||||
ubyte yanim = 0
|
||||
|
@ -2,6 +2,9 @@
|
||||
%import syslib
|
||||
%zeropage basicsafe
|
||||
|
||||
; TODO seems slightly slower since recent compiler changes????
|
||||
|
||||
|
||||
spritedata $0a00 {
|
||||
; this memory block contains the sprite data
|
||||
; it must start on an address aligned to 64 bytes.
|
||||
|
Loading…
Reference in New Issue
Block a user