summaryrefslogtreecommitdiff
path: root/roms/counting_lights.asm
blob: 30423cfdc5115054bc9a3bb052549c2203372fa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
 .org #$f800
reset:
 lda #$ff
 sta $6002
 ldx #$0
loop:
 stx $6000
 inx
 jmp loop

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