summaryrefslogtreecommitdiffstats
path: root/hacks/images/m6502/noise.asm
blob: 32447d7717cc38780096a42ca90078c88ed4e276 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; static noise

start: ldy #$ff
       ldx #$0
loop:  lda $fe
       sta $200,x
       and #$7
       sta $300,x
       and #$3
       sta $400,x
       and #$1
       sta $500,x
       inx
       dey
       bne loop
       rts