]> git.sur5r.net Git - cc65/blobdiff - libsrc/atari5200/gotoxy.s
atari5200: implement bgcolor() and textcolor()
[cc65] / libsrc / atari5200 / gotoxy.s
index 24e2c2e35ab0edb40111e2d720f3934b707f708a..dce5b6c2a593b9fc42147e93a7254a7aa7a8daef 100644 (file)
@@ -8,7 +8,6 @@
 
         .export         gotoxy, _gotoxy
         .import         popa
-        .import         setcursor
 
 gotoxy:
         jsr     popa            ; Get Y
@@ -17,4 +16,4 @@ _gotoxy:                        ; Set the cursor position
         sta     ROWCRS_5200     ; Set Y
         jsr     popa            ; Get X
         sta     COLCRS_5200     ; Set X
-        jmp     setcursor
+        rts