]> git.sur5r.net Git - cc65/blobdiff - libsrc/osic1p/bootstrap.s
Renamed RAM to MAIN for all disk based targets.
[cc65] / libsrc / osic1p / bootstrap.s
index 2a501b980ca5967e097f30ffae5ad5fa05384c02..ed2ade2223bc509a30bc597676aa09b70d76e309 100644 (file)
@@ -6,16 +6,16 @@
 ; add "-u __BOOT__" to the cl65/ld65 command line.  Then, the linker
 ; will import this symbol name; and, link this module at the front
 ; of your program file.
-;
-        .export         __BOOT__:abs = 1
 
-        .import         __RAM_START__, __RAM_SIZE__, __BSS_RUN__
+        .export         __BOOT__ : abs = 1
+
+        .import         __MAIN_START__, __MAIN_SIZE__, __BSS_RUN__
 
 ; ------------------------------------------------------------------------
 
-load_addr       :=      __RAM_START__
-load_size       =       __BSS_RUN__ - __RAM_START__
-ram_top         :=      __RAM_START__ + __RAM_SIZE__
+load_addr       :=      __MAIN_START__
+load_size       =       __BSS_RUN__ - __MAIN_START__
+ram_top         :=      __MAIN_START__ + __MAIN_SIZE__
 
         .segment        "BOOT"