blob: 07441cc00da8c3d5652205c04de1028112177111 [file] [log] [blame]
;;; This program should test for a bug involving endianness.
start:
lda #$FF
sta $200 ; Put something on the screen, just to see
jmp second-pixel
brk
second-pixel:
lda #$E0 ; Red
sta $201
sta $220
sta $221 ; Draw a box around the white pixel
loop: ; Infinite loop
jmp loop