]> git.sur5r.net Git - cc65/commitdiff
Remove BASHEAD segment which is not useful
authorjede <jede@oric.org>
Tue, 18 Sep 2018 19:52:37 +0000 (21:52 +0200)
committerOliver Schmidt <ol.sc@web.de>
Fri, 19 Oct 2018 21:43:40 +0000 (23:43 +0200)
cfg/telestrat.cfg
libsrc/telestrat/orixhdr.s

index 42e8d2cb5463eb3b647ce874f0f82a303aa2baeb..400958f8626190b3de8308f0291dd4736b1be9a1 100644 (file)
@@ -6,8 +6,8 @@ SYMBOLS {
 MEMORY {
     ZP:      file = "", define = yes, start = $00B0,            size = $003A;
     ORIXHDR: file = %O, type   = ro,  start = $0000,            size = $001F;
-    BASHEAD: file = %O, define = yes, start = $0801,            size = $000D;
-    MAIN:    file = %O, define = yes, start = __BASHEAD_LAST__, size = __RAMEND__ - __MAIN_START__;
+#    BASHEAD: file = %O, define = yes, start = $0801,            size = $000D;
+    MAIN:    file = %O, define = yes, start = $0800, size = __RAMEND__ - __MAIN_START__;
     BSS:     file = "",               start = __ONCE_RUN__,     size = __RAMEND__ - __STACKSIZE__ - __ONCE_RUN__;
 }
 SEGMENTS {
index 6fe2fca73bd9267384220b1c17bafedb19b1f360..0046bb79cc1d1a677273b1d58fa0575294665a96 100644 (file)
@@ -9,7 +9,7 @@
 
     ; These symbols, also, come from the configuration file.
     .import __AUTORUN__, __PROGFLAG__
-    .import __BASHEAD_START__, __MAIN_LAST__
+    .import __MAIN_START__, __MAIN_LAST__
 
 
 ; ------------------------------------------------------------------------
@@ -29,7 +29,7 @@
     .byte   $00                     ;  reserved
     .byte   $00                     ;  auto or not
 
-    .word   __BASHEAD_START__       ; Address of start of file
+    .word   __MAIN_START__          ; Address of start of file
     .word   __MAIN_LAST__ - 1       ;  Address of end of file
-    .word   __BASHEAD_START__       ;  Address of start of file
+    .word   __MAIN_START__          ;  Address of start of file