2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 28.09.1998
|
|
|
|
;
|
|
|
|
; udtim routine for the 610. We will not check for the stop key here, since
|
|
|
|
; C programs will not use it.
|
|
|
|
;
|
|
|
|
|
2002-11-19 23:02:47 +00:00
|
|
|
.export UDTIM
|
2000-05-28 13:40:48 +00:00
|
|
|
.importzp time
|
|
|
|
|
|
|
|
|
2002-11-19 23:02:47 +00:00
|
|
|
.proc UDTIM
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
inc time
|
|
|
|
bne L9
|
|
|
|
inc time+1
|
|
|
|
bne L9
|
|
|
|
inc time+2
|
|
|
|
bne L9
|
|
|
|
inc time+3
|
|
|
|
L9: rts
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
2002-11-19 23:02:47 +00:00
|
|
|
|