more space improvements by Daniel Serpell

git-svn-id: svn://svn.cc65.org/cc65/trunk@4503 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg
2009-12-07 18:58:32 +00:00
parent a467095216
commit 2bca737f57
5 changed files with 61 additions and 76 deletions

View File

@@ -26,10 +26,6 @@
__getdefdev:
.ifdef DEFAULT_DEVICE
lda #'0'+DEFAULT_DEVICE
sta __defdev+1
.endif
lda __dos_type ; which DOS?
cmp #ATARIDOS
beq finish
@@ -86,5 +82,9 @@ finish: lda #<__defdev
; Default device
__defdev:
.ifdef DEFAULT_DEVICE
.byte 'D', '0'+DEFAULT_DEVICE, ':', 0
.else
.byte "D1:", 0
.endif