1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

Optimization by replacing absolute with relative jump.

This commit is contained in:
Stephan Mühlstrasser 2015-02-28 20:29:08 +01:00
parent 4737ad93d5
commit 1d6aa84d9a

View File

@ -23,7 +23,7 @@ _cgetc:
tax ; save character in X
lda #$00
sta CHARBUF ; empty buffer
jmp restorex ; restore X and return
beq restorex ; restore X and return
nobuffer:
lda cursor ; show cursor?
beq nocursor