summaryrefslogtreecommitdiffstats
path: root/hacks/images/m6502/noise.asm
diff options
context:
space:
mode:
authorSimon Rettberg2024-09-06 14:42:37 +0200
committerSimon Rettberg2024-09-06 14:42:37 +0200
commitbadef32037f52f79abc1f1440b786cd71afdf270 (patch)
tree412b792d4cab4a7a110db82fcf74fe8a1ac55ec1 /hacks/images/m6502/noise.asm
parentDelete pre-6.00 files (diff)
downloadxscreensaver-master.tar.gz
xscreensaver-master.tar.xz
xscreensaver-master.zip
Diffstat (limited to 'hacks/images/m6502/noise.asm')
-rw-r--r--hacks/images/m6502/noise.asm16
1 files changed, 0 insertions, 16 deletions
diff --git a/hacks/images/m6502/noise.asm b/hacks/images/m6502/noise.asm
deleted file mode 100644
index 32447d7..0000000
--- a/hacks/images/m6502/noise.asm
+++ /dev/null
@@ -1,16 +0,0 @@
-; 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