1
0
mirror of https://github.com/cc65/cc65.git synced 2024-11-19 06:31:31 +00:00

Don't set cursor in clrscr

This commit is contained in:
Karri Kaksonen 2022-04-04 10:50:38 +03:00
parent b3d28dd517
commit 6017671fd9

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