]> git.sur5r.net Git - cc65/commitdiff
Replaced $30 by literal '0' for better readability.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 10 Dec 2009 22:12:24 +0000 (22:12 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 10 Dec 2009 22:12:24 +0000 (22:12 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4513 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/c128/crt0.s
libsrc/c16/crt0.s
libsrc/c64/crt0.s
libsrc/pet/crt0.s
libsrc/plus4/crt0.s
libsrc/vic20/crt0.s

index 0c9edfa77cd9b87ca2539de990a705dc1f9da955..f5ba7b9abcfd9d0b48e06f10ec54dac80e520d6e 100644 (file)
@@ -29,10 +29,10 @@ IRQInd              = $2FD  ; 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
 
index d56e7bfdeb7cf599299c6215595a732ad88a41c7..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
 
index efa80b12e7de2a732e2a11db1993d43abfd0899c..a533d7568383f46da9b199404867a804f108d4eb 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
 
index 7be1d16fa16bc766d6c1ee0576dce430224fa479..bc9799f7786f5faf1430a216f936fe999fdec8c7 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
 
index 36f1c0211066defc2ea184aa5cd2d8034ca77c87..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
 
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