]> git.sur5r.net Git - cc65/commitdiff
libsrc/atari/getdefdev.s: small optimization and fix a typo
authorChristian Groessler <chris@groessler.org>
Fri, 14 Sep 2018 14:54:20 +0000 (16:54 +0200)
committerChristian Groessler <chris@groessler.org>
Fri, 14 Sep 2018 14:54:20 +0000 (16:54 +0200)
libsrc/atari/getdefdev.s

index cad7687832a1f6646890b837d9f100113db5a015..e1ec3f4c084bd4a12fad8f7979bc32393a28e4d9 100644 (file)
@@ -81,7 +81,7 @@ finish: lda     #<__defdev
         ldx     #>__defdev
         rts
 
-; On AtariDOS or MyDOS, use the DUNIT variable to setuo the default
+; On AtariDOS or MyDOS, use the DUNIT variable to setup the default
 ; device. The default device will then be the one the program was
 ; loaded from.
 
@@ -89,8 +89,7 @@ use_DUNIT:
         lda     DUNIT
         clc
         adc     #'0'
-        sta     __defdev + 1
-        bne     finish          ; jump always
+        bne     done            ; jump always
 
 ; XDOS default device retrieval