]> git.sur5r.net Git - cc65/blobdiff - libsrc/cbm610/kudtim.s
no TGI_ERR_NO_MEM or TGI_ERR_NO_IOCB anymore: replaced by TGI_ERR_NO_RES
[cc65] / libsrc / cbm610 / kudtim.s
index e100a84c6d214d8d89c2113ca1115e28c8a386d7..4653d8148a94ae7c5f0a3bea8a2fe59943aa2654 100644 (file)
@@ -1,15 +1,14 @@
 ;
-; Ullrich von Bassewitz, 28.09.1998
+; 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         k_udtim
-       .importzp       time
+;                                  
 
+        .export         UDTIM
+        .import         time: zp
 
-.proc  k_udtim
+.proc  UDTIM
 
        inc     time
        bne     L9
@@ -22,4 +21,3 @@ L9:   rts
 
 .endproc
 
-