Blob Blame History Raw
From f9e13abc11ed85418e288eefdfb031766ee90b3b Mon Sep 17 00:00:00 2001
From: jede <jede@oric.org>
Date: Wed, 17 Jul 2019 22:53:49 +0200
Subject: [PATCH 024/170] jmp instead of jsr

---
 libsrc/telestrat/gotoxy.s | 5 +++--
 libsrc/telestrat/gotoy.s  | 3 +--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libsrc/telestrat/gotoxy.s b/libsrc/telestrat/gotoxy.s
index 04a680e6..890970eb 100644
--- a/libsrc/telestrat/gotoxy.s
+++ b/libsrc/telestrat/gotoxy.s
@@ -19,12 +19,13 @@ gotoxy: jsr     popa            ; Get Y
 ; In telemon, there is a position for the prompt, and another for the cursor.
 
     sta     SCRY
-    jsr     update_adscr          ; Update adress video ram position when SCRY is modified 
+    
 
     jsr     popa
     sta     SCRX
 
-    rts
+    jmp     update_adscr          ; Update adress video ram position when SCRY is modified 
+    
 .endproc
 
 .proc update_adscr
diff --git a/libsrc/telestrat/gotoy.s b/libsrc/telestrat/gotoy.s
index 182e3f74..008d4413 100644
--- a/libsrc/telestrat/gotoy.s
+++ b/libsrc/telestrat/gotoy.s
@@ -9,6 +9,5 @@
 
 .proc _gotoy
     sta     SCRY
-    jsr     update_adscr
-    rts
+    jmp     update_adscr
 .endproc
-- 
2.26.0