summaryrefslogtreecommitdiffstats
path: root/hacks/images/m6502/sierpinski.asm
diff options
context:
space:
mode:
Diffstat (limited to 'hacks/images/m6502/sierpinski.asm')
-rw-r--r--hacks/images/m6502/sierpinski.asm24
1 files changed, 0 insertions, 24 deletions
diff --git a/hacks/images/m6502/sierpinski.asm b/hacks/images/m6502/sierpinski.asm
deleted file mode 100644
index 2d21905..0000000
--- a/hacks/images/m6502/sierpinski.asm
+++ /dev/null
@@ -1,24 +0,0 @@
-; Sierpinski
-; Submitted by Anonymous
-
-start:
- lda #$e1
- sta $0
- lda #$01
- sta $1
- ldy #$20
-
-write:
- ldx #$00
- eor ($0, x)
- sta ($0),y
-
- inc $0
- bne write
- inc $1
- ldx $1
- cpx #$06
- bne write
-
- rts
-