]> git.sur5r.net Git - cc65/blobdiff - libsrc/cbm/chline.s
Merge pull request #552 from polluks/master
[cc65] / libsrc / cbm / chline.s
index fe7e7255d7ce2c272a5be2f513fa2a563990fa66..73782f344ec283fe3401bebc1b2ac2c818251ccf 100644 (file)
@@ -6,13 +6,12 @@
 ;
 
         .export         _chlinexy, _chline
-        .import         popa, _gotoxy, cputdirect
+        .import         gotoxy, cputdirect
         .importzp       tmp1, chlinechar
 
 _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:
@@ -24,7 +23,3 @@ L1:     lda     #chlinechar     ; Horizontal line, screen code
         dec     tmp1
         bne     L1
 L9:     rts
-
-
-
-