]> git.sur5r.net Git - cc65/blobdiff - cfg/atari-asm.cfg
Merge pull request #577 from polluks/master
[cc65] / cfg / atari-asm.cfg
index bea5477659bb6a07df5827ed4bb1c324bf2a117c..6fc1c2caaa56712d586b75c5f555f2da3e8f0f6d 100644 (file)
@@ -3,7 +3,7 @@ FEATURES {
 }
 SYMBOLS {
     __EXEHDR__:       type = import;
-    __AUTOSTART__:    type = import;  # force inclusion of autostart "trailer"
+    __AUTOSTART__:    type = import; # force inclusion of autostart "trailer"
     __STARTADDRESS__: type = export, value = %S;
 }
 MEMORY {
@@ -18,13 +18,13 @@ MEMORY {
     TRAILER: file = %O,               start = $0000, size = $0006;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,      type = zp,                optional = yes;
-    EXTZP:    load = ZP,      type = zp,                optional = yes; # to enable modules to be able to link to C and assembler programs
-    EXEHDR:   load = HEADER,  type = ro,                optional = yes;
-    MAINHDR:  load = MAINHDR, type = ro,                optional = yes;
-    CODE:     load = MAIN,    type = ro,  define = yes, optional = yes;
-    RODATA:   load = MAIN,    type = ro                 optional = yes;
-    DATA:     load = MAIN,    type = rw                 optional = yes;
-    BSS:      load = MAIN,    type = bss, define = yes, optional = yes;
-    AUTOSTRT: load = TRAILER, type = ro,                optional = yes;
+    ZEROPAGE: load = ZP,      type = zp,  optional = yes;
+    EXTZP:    load = ZP,      type = zp,  optional = yes; # to enable modules to be able to link to C and assembler programs
+    EXEHDR:   load = HEADER,  type = ro,  optional = yes;
+    MAINHDR:  load = MAINHDR, type = ro,  optional = yes;
+    CODE:     load = MAIN,    type = rw,                  define = yes;
+    RODATA:   load = MAIN,    type = ro   optional = yes;
+    DATA:     load = MAIN,    type = rw   optional = yes;
+    BSS:      load = MAIN,    type = bss, optional = yes, define = yes;
+    AUTOSTRT: load = TRAILER, type = ro,  optional = yes;
 }