diff options
| author | Simon Rettberg | 2024-09-06 14:42:37 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2024-09-06 14:42:37 +0200 |
| commit | badef32037f52f79abc1f1440b786cd71afdf270 (patch) | |
| tree | 412b792d4cab4a7a110db82fcf74fe8a1ac55ec1 /hacks/images/m6502/matrix.asm | |
| parent | Delete pre-6.00 files (diff) | |
| download | xscreensaver-master.tar.gz xscreensaver-master.tar.xz xscreensaver-master.zip | |
Diffstat (limited to 'hacks/images/m6502/matrix.asm')
| -rw-r--r-- | hacks/images/m6502/matrix.asm | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/hacks/images/m6502/matrix.asm b/hacks/images/m6502/matrix.asm deleted file mode 100644 index 0ec27a7..0000000 --- a/hacks/images/m6502/matrix.asm +++ /dev/null @@ -1,67 +0,0 @@ -;;Matrix :) - -loop: - lda $fe - and #$1f - tay - tax - lda matrix,y - sta $1 - tay - lda #0 - jsr paint - inc $1 - lda $1 - and #$1f - sta matrix,y - tay - lda #5 - jsr paint - lda $fe - and #$1f - tay - tax - lda matrix,y - sta $1 - tay - lda #$d - jsr paint - lda $fe - and #$1f - tay - tax - lda matrix,y - sta $1 - tay - lda #$5 - jsr paint - jmp loop - -paint: - pha - lda yl,y - sta $2 - lda yh,y - sta $3 - txa - tay - pla - sta ($2),y - rts - -yh: - dcb $02, $02, $02, $02, $02, $02, $02, $02 - dcb $03, $03, $03, $03, $03, $03, $03, $03 - dcb $04, $04, $04, $04, $04, $04, $04, $04 - dcb $05, $05, $05, $05, $05, $05, $05, $05 - -yl: - dcb $00, $20, $40, $60, $80, $a0, $c0, $e0 - dcb $00, $20, $40, $60, $80, $a0, $c0, $e0 - dcb $00, $20, $40, $60, $80, $a0, $c0, $e0 - dcb $00, $20, $40, $60, $80, $a0, $c0, $e0 - -matrix: - dcb 5,16,19,19,17,26,10,14,11,4,1,2,20,1,8,30 - dcb 17,26,19,19,31,21,11,19,3,24,4,24,13,8,8,26 - |
