mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-12 12:07:53 +00:00
17 lines
241 B
ArmAsm
17 lines
241 B
ArmAsm
;=====================
|
|
;=====================
|
|
; long(er) wait
|
|
; waits approximately 10ms * X
|
|
;=====================
|
|
;=====================
|
|
long_wait:
|
|
lda #64
|
|
jsr WAIT ; delay 1/2(26+27A+5A^2) us, 11,117
|
|
dex
|
|
bne long_wait
|
|
rts
|
|
|
|
|
|
|
|
|