]> git.sur5r.net Git - cc65/blobdiff - libsrc/atari/exehdr.s
Renamed RAM to MAIN for all disk based targets.
[cc65] / libsrc / atari / exehdr.s
index ea9fa95d7cc775b22f45577ca788a233a5c136d3..7abb7c1ac569ff712ac1695a779ee5a0860f2b02 100644 (file)
@@ -1,11 +1,11 @@
 ; This file defines the EXE header and main chunk load header for Atari executables
 
         .export         __EXEHDR__: absolute = 1
-        .import         __RAM_START__, __BSS_LOAD__
+        .import         __MAIN_START__, __BSS_LOAD__
 
 .segment        "EXEHDR"
         .word   $FFFF
 
 .segment        "MAINHDR"
-        .word   __RAM_START__
+        .word   __MAIN_START__
         .word   __BSS_LOAD__ - 1