mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
24 lines
432 B
ArmAsm
24 lines
432 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2003-12-21
|
|
;
|
|
; udtim routine for the 610. We will not check for the stop key here, since
|
|
; C programs will not use it.
|
|
;
|
|
|
|
.export UDTIM
|
|
.import time: zp
|
|
|
|
.proc UDTIM
|
|
|
|
inc time
|
|
bne L9
|
|
inc time+1
|
|
bne L9
|
|
inc time+2
|
|
bne L9
|
|
inc time+3
|
|
L9: rts
|
|
|
|
.endproc
|
|
|