]> git.sur5r.net Git - cc65/blobdiff - libsrc/cbm510/kudtim.s
remove superfluous ".code" line
[cc65] / libsrc / cbm510 / kudtim.s
index e50e1cf71e7ea919484ca2998f2cecd6bbbb4e20..4653d8148a94ae7c5f0a3bea8a2fe59943aa2654 100644 (file)
@@ -1,15 +1,14 @@
 ;
-; Ullrich von Bassewitz, 13.09.2001
+; Ullrich von Bassewitz, 2003-12-21
 ;
-; udtim routine for the 510. We will not check for the stop key here, since
+; 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
 
-