mirror of
https://github.com/cc65/cc65.git
synced 2025-02-03 22:32:24 +00:00
Replaced $30 by literal '0' for better readability.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4513 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
13698871cb
commit
7e2a24176f
@ -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
|
||||
|
||||
|
@ -25,10 +25,10 @@
|
||||
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
|
||||
|
||||
|
@ -24,10 +24,10 @@
|
||||
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
|
||||
|
||||
|
@ -23,10 +23,10 @@
|
||||
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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -23,10 +23,10 @@
|
||||
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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user