From 47366cbbf6df00d73c154bd9360e70937d03a703 Mon Sep 17 00:00:00 2001 From: Bob Andrews Date: Mon, 18 Apr 2022 17:49:12 +0200 Subject: [PATCH] use jmp instead of jsr/rts --- libsrc/atari7800/mono_setcursor.s | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libsrc/atari7800/mono_setcursor.s b/libsrc/atari7800/mono_setcursor.s index fa02b1744..42f9bf466 100644 --- a/libsrc/atari7800/mono_setcursor.s +++ b/libsrc/atari7800/mono_setcursor.s @@ -161,8 +161,8 @@ umula0: jsr mono_gotoy jsr popa - jsr mono_gotox - rts + jmp mono_gotox + .endproc .proc mono_gotoxy @@ -197,8 +197,8 @@ umula0: .segment "ONCE" mono_init_cursor: lda #0 - jsr calccursorzone - rts + jmp calccursorzone + ;----------------------------------------------------------------------------- ; force the init constructor to be imported