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