snake6502/src/outro.asm

20 lines
321 B
NASM

#if VERBOSE = 1
LASTINIT SET .
#endif
; Wait for some delay
statusDelay SUBROUTINE
ldy delay ; load outroDelay and decrement
dey
sty delay
cpy #0
beq .end
rts
.end:
lda delayStatus
sta status
rts
#if VERBOSE = 1
ECHO "outro.asm @ ",LASTINIT,"len:",(. - LASTINIT)
#endif