jmp instead of jsr

This commit is contained in:
jede 2019-07-17 22:53:49 +02:00 committed by greg-king5
parent ede64f68a9
commit f9e13abc11
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -9,6 +9,5 @@
.proc _gotoy
sta SCRY
jsr update_adscr
rts
jmp update_adscr
.endproc