mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 19:29:37 +00:00
Merge pull request #369 from groessler/something_to_pull
Small space optimization in libsrc/atari/is_cmdline_dos.s.
This commit is contained in:
commit
cc8ecd836f
@ -11,10 +11,8 @@
|
||||
.include "atari.inc"
|
||||
|
||||
__is_cmdline_dos:
|
||||
ldx #0
|
||||
lda __dos_type
|
||||
cmp #MAX_DOS_WITH_CMDLINE + 1
|
||||
txa
|
||||
lda #MAX_DOS_WITH_CMDLINE
|
||||
cmp __dos_type
|
||||
lda #0
|
||||
rol a
|
||||
eor #$01
|
||||
rts
|
||||
|
Loading…
Reference in New Issue
Block a user