]> git.sur5r.net Git - cc65/blobdiff - libsrc/plus4/crt0.s
Replaced $30 by literal '0' for better readability.
[cc65] / libsrc / plus4 / crt0.s
index 41176214ef9d66fefc7a6d2aa08fcb0035c3cff6..f9e79db78675c3fafb46c04d27f9decc7e13038c 100644 (file)
@@ -28,10 +28,10 @@ IRQInd              = $500  ; JMP $0000 - used as indirect IRQ vector
 Head:   .word   @Next
         .word   .version        ; Line number
         .byte   $9E             ; SYS token
-        .byte   <(((Start / 1000) .mod 10) + $30)
-        .byte   <(((Start /  100) .mod 10) + $30)
-        .byte   <(((Start /   10) .mod 10) + $30)
-        .byte   <(((Start /    1) .mod 10) + $30)
+        .byte   <(((Start / 1000) .mod 10) + '0')
+        .byte   <(((Start /  100) .mod 10) + '0')
+        .byte   <(((Start /   10) .mod 10) + '0')
+        .byte   <(((Start /    1) .mod 10) + '0')
         .byte   $00             ; End of BASIC line
 @Next:  .word   0               ; BASIC end marker
 
@@ -42,10 +42,6 @@ Head:   .word   @Next
 
 Start:
 
-; Close open files
-
-       jsr     $FFCC           ; CLRCH
-
 ; Save the zero page locations we need
 
         sei                     ; No interrupts since we're banking out the ROM