From: cpg Date: Thu, 12 Dec 2002 23:50:35 +0000 (+0000) Subject: call setcursor X-Git-Tag: V2.12.0~1912 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cff1f462fb665002386fe894e56508544f66b234;p=cc65 call setcursor git-svn-id: svn://svn.cc65.org/cc65/trunk@1748 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/atari/chline.s b/libsrc/atari/chline.s index ffc4717a3..e0d0a9629 100644 --- a/libsrc/atari/chline.s +++ b/libsrc/atari/chline.s @@ -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 diff --git a/libsrc/atari/cvline.s b/libsrc/atari/cvline.s index e95516869..ca3795aca 100644 --- a/libsrc/atari/cvline.s +++ b/libsrc/atari/cvline.s @@ -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