mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +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"
|
.include "atari.inc"
|
||||||
|
|
||||||
__is_cmdline_dos:
|
__is_cmdline_dos:
|
||||||
ldx #0
|
lda #MAX_DOS_WITH_CMDLINE
|
||||||
lda __dos_type
|
cmp __dos_type
|
||||||
cmp #MAX_DOS_WITH_CMDLINE + 1
|
lda #0
|
||||||
txa
|
|
||||||
rol a
|
rol a
|
||||||
eor #$01
|
|
||||||
rts
|
rts
|
||||||
|
Loading…
Reference in New Issue
Block a user