]> git.sur5r.net Git - cc65/blobdiff - libsrc/pce/chline.s
Introduced internal gotoxy that pops both parameters.
[cc65] / libsrc / pce / chline.s
index 8bf8f1626b1458b1a6299064f4de040be31599ca..3c6589375da76b37f3a870fd7437dc138f2cb13a 100644 (file)
@@ -6,15 +6,14 @@
 ;
 
         .export         _chlinexy, _chline
-        .import         popa, _gotoxy, cputdirect
+        .import         gotoxy, cputdirect
         .importzp       tmp1
 
         .include        "pce.inc"
 
 _chlinexy:
         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
 
 _chline: