2001-09-13 21:09:19 +00:00
|
|
|
;
|
2003-12-27 16:11:14 +00:00
|
|
|
; Ullrich von Bassewitz, 2003-12-21
|
2001-09-13 21:09:19 +00:00
|
|
|
;
|
2003-12-27 16:11:14 +00:00
|
|
|
; udtim routine for the 610. We will not check for the stop key here, since
|
2001-09-13 21:09:19 +00:00
|
|
|
; C programs will not use it.
|
2003-12-27 16:11:14 +00:00
|
|
|
;
|
2001-09-13 21:09:19 +00:00
|
|
|
|
2003-12-27 16:11:14 +00:00
|
|
|
.export UDTIM
|
|
|
|
.import time: zp
|
2001-09-13 21:09:19 +00:00
|
|
|
|
2002-11-19 23:02:47 +00:00
|
|
|
.proc UDTIM
|
2001-09-13 21:09:19 +00:00
|
|
|
|
|
|
|
inc time
|
|
|
|
bne L9
|
|
|
|
inc time+1
|
|
|
|
bne L9
|
|
|
|
inc time+2
|
|
|
|
bne L9
|
|
|
|
inc time+3
|
|
|
|
L9: rts
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|