2001-09-13 21:09:19 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 13.09.2001
|
|
|
|
;
|
|
|
|
; udtim routine for the 510. 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
|
2001-09-13 21:09:19 +00:00
|
|
|
.importzp time
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
2002-11-19 23:02:47 +00:00
|
|
|
|