summaryrefslogtreecommitdiff
path: root/roms/blinken_lights.asm
blob: 90f04e8fa6f876e9223059f7a2a9ac26e5eadc7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 .org #$f800
reset:
 lda #$ff
 sta $6002
loop:
 lda #$55
 sta $6000
 lda #$aa
 sta $6000
 jmp loop

 .org #$fffc
 .word reset
 .word $0000