I tried to draw a pixel moving across the screen from left to right. Here is the part of the code that draws the pixel:
Code: Select all
ldy ballX
lda #$ff
sta (pixelAddrL),y
This made me think I miswired some address lines, so I tried to check. I found that if I nudge the wires with my finger, the '816 suddenly fails and goes into a brk-loop. This makes me think my setup isn't stable enough, and that might be what's causing odd behavior.