peasant: longstanding bug in hgr_copy should have caught?

This commit is contained in:
Vince Weaver 2023-08-14 01:41:40 -04:00
parent bee32d7ab1
commit 8f7175273a
1 changed files with 5 additions and 7 deletions

View File

@ -6,9 +6,9 @@
; intentionally slow for the miniblind effect
hgr_copy:
lda $0
sta INL
sta OUTL
ldy #0 ; start at beginning
sty INL
sty OUTL
lda #$20
sta INH
@ -16,11 +16,11 @@ hgr_copy:
sta OUTH
ldy #0
; ldy #0
hgr_copy_outer:
hgr_copy_inner:
lda #1
lda #1 ; artificial slowdown
jsr wait
lda (INL),Y
@ -36,5 +36,3 @@ hgr_copy_inner:
rts