]> git.sur5r.net Git - cc65/blobdiff - libsrc/pce/chline.s
Atari: clock_gettime() and clock_settime() implementations
[cc65] / libsrc / pce / chline.s
index 8bf8f1626b1458b1a6299064f4de040be31599ca..25644a72a8a3f7cc25a0668dff1378d811f4cda6 100644 (file)
@@ -6,15 +6,15 @@
 ;
 
         .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:
@@ -26,7 +26,3 @@ L1:     lda     #CH_HLINE       ; Horizontal line, screen code
         dec     tmp1
         bne     L1
 L9:     rts
-
-
-
-