]> git.sur5r.net Git - cc65/blobdiff - libsrc/osic1p/cvline.s
Updated comment
[cc65] / libsrc / osic1p / cvline.s
index 84e5a45bf10692b42292ef53b38bba0a19184363..7a393bdc8250d18ab2c1b3d0df0b127f2308d5a8 100644 (file)
@@ -8,13 +8,12 @@
 ;
 
         .export         _cvlinexy, _cvline
-        .import         popa, _gotoxy, putchar, newline
+        .import         gotoxy, putchar, newline
         .importzp       tmp1
 
 _cvlinexy:
         pha                     ; Save the length
-        jsr     popa            ; Get y
-        jsr     _gotoxy         ; Call this one, will pop params
+        jsr     gotoxy          ; Call this one, will pop params
         pla                     ; Restore the length and run into _cvline
 
 _cvline: