]> git.sur5r.net Git - cc65/commitdiff
Fixed BSS properties.
authorOliver Schmidt <ol.sc@web.de>
Sun, 13 Mar 2016 21:13:41 +0000 (22:13 +0100)
committerOliver Schmidt <ol.sc@web.de>
Sun, 13 Mar 2016 21:13:41 +0000 (22:13 +0100)
The cassette boot file header references __BSS_RUN__ so BSS must be the first bss type segment (and for sure isn't optional).

cfg/atari-cassette.cfg

index b138b8f0ecf1e6b2d5abfcb2fe3d04cdf864cf79..84bb5ad022bb81d2ae9f974616ba88e135487384 100644 (file)
@@ -21,8 +21,8 @@ SEGMENTS {
     CODE:     load = MAIN, type = ro,  define = yes;
     RODATA:   load = MAIN, type = ro,                optional = yes;
     DATA:     load = MAIN, type = rw,                optional = yes;
+    BSS:      load = MAIN, type = bss, define = yes;
     INIT:     load = MAIN, type = bss,               optional = yes;
-    BSS:      load = MAIN, type = bss, define = yes, optional = yes;
 }
 FEATURES {
     CONDES: type    = constructor,