1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

Don't set cursor in clrscr

This commit is contained in:
Karri Kaksonen 2022-04-04 10:50:38 +03:00 committed by mrdudz
parent fce4bc0c58
commit 8b06ff18c0

View File

@ -3,18 +3,13 @@
.export _clrscr
.import CURS_X
.import CURS_Y
.import _screen
.import pushax, __bzero
.import pusha0,pushax, __bzero
.code
.proc _clrscr
lda #0
sta CURS_X
sta CURS_Y
lda #<(_screen)
ldx #>(_screen)
jsr pushax