mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
jmp instead of jsr
This commit is contained in:
parent
ede64f68a9
commit
f9e13abc11
@ -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
|
||||
|
@ -9,6 +9,5 @@
|
||||
|
||||
.proc _gotoy
|
||||
sta SCRY
|
||||
jsr update_adscr
|
||||
rts
|
||||
jmp update_adscr
|
||||
.endproc
|
||||
|
Loading…
Reference in New Issue
Block a user