]> git.sur5r.net Git - cc65/blobdiff - libsrc/gamate/cvline.s
Introduced internal gotoxy that pops both parameters.
[cc65] / libsrc / gamate / cvline.s
index b22890815f60749975dd1c85e53009b2960ff0c4..89f49219a8289f3b0cb429a6cdf4ca28fcdb0c88 100644 (file)
@@ -6,15 +6,14 @@
 ;
 
         .export         _cvlinexy, _cvline
-        .import         popa, _gotoxy, putchar, newline
+        .import         gotoxy, putchar, newline
         .importzp       tmp1
 
         .include        "gamate.inc"
 
 _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: