]> git.sur5r.net Git - cc65/blobdiff - libsrc/c16/crt0.s
Minor comment adjustment.
[cc65] / libsrc / c16 / crt0.s
index 18d6f7b09d25e3762645545cefa54a94804e24a1..bbdd4a2520f3cfa639f8b14fb61c565a355ae396 100644 (file)
 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
 
@@ -39,10 +39,6 @@ Head:   .word   @Next
 
 Start:
 
-; Close open files
-
-       jsr     CLRCH
-
 ; Save the zero page locations we need
 
         ldx    #zpspace-1