1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-21 15:32:41 +00:00

Fixed missing import in textcursor.s

This commit is contained in:
mc78 2024-08-28 13:05:37 +02:00
parent 34e063a2a0
commit cb0862d01b

View File

@ -6,6 +6,7 @@
.export _savecursorto, _restorecursorfrom
.import CURS_X: zp, CURS_Y: zp
.import pushax, staxspidx, ldaxi, PLOT
.proc _savecursorto
@ -19,7 +20,8 @@
.proc _restorecursorfrom
jsr ldaxi
sta CURS_X
stx CURS_Y
rts
tay
txa
clc
jmp PLOT
.endproc