snake6502/src/outro.asm

20 lines
321 B
NASM
Raw Normal View History

2020-09-15 12:57:10 +00:00
#if VERBOSE = 1
LASTINIT SET .
#endif
2020-04-08 07:15:25 +00:00
; Wait for some delay
statusDelay SUBROUTINE
ldy delay ; load outroDelay and decrement
dey
2020-04-08 07:15:25 +00:00
sty delay
cpy #0
2020-04-08 07:15:25 +00:00
beq .end
rts
2020-04-08 07:15:25 +00:00
.end:
lda delayStatus
sta status
rts
2020-09-15 12:57:10 +00:00
#if VERBOSE = 1
ECHO "outro.asm @ ",LASTINIT,"len:",(. - LASTINIT)
#endif