]> git.sur5r.net Git - cc65/commitdiff
As a test, remove the SYS header from the startup code and use the one
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 14 Nov 2010 11:51:05 +0000 (11:51 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 14 Nov 2010 11:51:05 +0000 (11:51 +0000)
supplied by the new exehdr module.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4862 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/c64/crt0.s

index 718943a89c05b1e38123246e61424d40303ce939..a513b1f7380b42df1cc942cd26e2817479520e36 100644 (file)
        .include        "c64.inc"
 
 
-; ------------------------------------------------------------------------
-; BASIC header with a SYS call
-
-.segment               "EXEHDR"
-
-Head:   .word   @Next
-        .word   .version        ; Line number
-        .byte   $9E             ; SYS token
-        .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
-
 ; ------------------------------------------------------------------------
 ; Startup code