4cade/src/fx/fx.hgr.stagger.lr.a

45 lines
816 B
Plaintext
Raw Permalink Normal View History

2018-12-29 18:43:59 +00:00
;license:MIT
;(c) 2018 by 4am
;
!cpu 6502
!to "build/FX.INDEXED/STAGGER.LR",plain
*=$6000
row = $fd
col1 = $fe
col2 = $ff
2022-08-26 01:56:15 +00:00
!source "src/fx/macros.a"
lda #$00
sta col1
lda #$27
sta col2
@outerloop
lda #$2E
sta row
@loop1 ldy col1
lda row
jsr HGRHalfBlockCopy
iny
jsr HGRStaggerCopy
ldy col2
lda row
jsr HGRHalfBlockCopy
dey
jsr HGRStaggerCopy
dec row
dec row
bpl @loop1
lda #$40
jsr iWaitForKeyWithTimeout
bmi @exit
inc col1
inc col1
dec col2
dec col2
bpl @outerloop
@exit rts
+HGR_HALF_BLOCK_COPY_ROUTINES