]> git.sur5r.net Git - cc65/blobdiff - libsrc/vic20/crt0.s
Replaced $30 by literal '0' for better readability.
[cc65] / libsrc / vic20 / crt0.s
index e48506f3377d909f9aa4c8f3e3ac10cc7ac3afca..9c8a53be80754855f240562e9a9887251bec9125 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