]> git.sur5r.net Git - cc65/commitdiff
call setcursor
authorcpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 12 Dec 2002 23:50:35 +0000 (23:50 +0000)
committercpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 12 Dec 2002 23:50:35 +0000 (23:50 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1748 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/atari/chline.s
libsrc/atari/cvline.s

index ffc4717a3bad114bf3ff3b9c86f472ba7ee3dd1d..e0d0a9629e84128ba747fa9e3a27779785befc13 100644 (file)
@@ -6,7 +6,7 @@
 ;
 
        .export         _chlinexy, _chline
-       .import         popa, _gotoxy, cputdirect
+       .import         popa, _gotoxy, cputdirect, setcursor
        .importzp       tmp1
 
 _chlinexy:
@@ -23,7 +23,7 @@ L1:           lda     #$12+64         ; Horizontal line, screen code
        jsr     cputdirect      ; Direct output
        dec     tmp1
        bne     L1
-L9:    rts
+L9:    jmp     setcursor
 
 
 
index e9551686944d184a2a71345f000e3935030fbf13..ca3795aca768ae4f41d35798e0ef93150dcbb54f 100644 (file)
@@ -7,7 +7,7 @@
        .include "atari.inc"
        
        .export         _cvlinexy, _cvline
-       .import         popa, _gotoxy, putchar
+       .import         popa, _gotoxy, putchar, setcursor
        .importzp       tmp1
 
 _cvlinexy:
@@ -29,7 +29,7 @@ L1:   lda     COLCRS
        inc     ROWCRS
        dec     tmp1
        bne     L1
-L9:    rts
+L9:    jmp     setcursor