mirror of
https://github.com/cc65/cc65.git
synced 2026-04-26 13:18:31 +00:00
Don't hardcode the address of the SYS call for the startup code of the
Commodore machines. git-svn-id: svn://svn.cc65.org/cc65/trunk@4474 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
+5
-6
@@ -25,18 +25,17 @@
|
||||
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) + $30)
|
||||
.byte <(((Start / 100) .mod 10) + $30)
|
||||
.byte <(((Start / 10) .mod 10) + $30)
|
||||
.byte <(((Start / 1) .mod 10) + $30)
|
||||
.byte $00 ; End of BASIC line
|
||||
@Next: .word 0 ; BASIC end marker
|
||||
@Start:
|
||||
|
||||
; ------------------------------------------------------------------------
|
||||
; Actual code
|
||||
|
||||
ldx #zpspace-1
|
||||
Start: ldx #zpspace-1
|
||||
L1: lda sp,x
|
||||
sta zpsave,x ; Save the zero page locations we need
|
||||
dex
|
||||
|
||||
Reference in New Issue
Block a user