]> git.sur5r.net Git - cc65/blobdiff - cfg/module.cfg
Added space after function name.
[cc65] / cfg / module.cfg
index edc87fb175d2cd2f928eb9c0e59f0628e15e43a5..be312585c41f7e4ba5870c95aba3fc58a5621a46 100644 (file)
@@ -1,16 +1,16 @@
 MEMORY {
-    ZP:       file = %O, start = $0000, size = $0100, type = rw, define = yes;
+    ZP:                  start = $0000, size = $0100;
     COMBINED: file = %O, start = $0000, size = $FFFF;
 }
 SEGMENTS {
-    JUMPTABLE: load = COMBINED, type = ro;
-    INIT:      load = COMBINED, type = ro,  optional = yes;
-    CODE:      load = COMBINED, type = ro;
-    RODATA:    load = COMBINED, type = ro;
-    DATA:      load = COMBINED, type = rw,  define = yes;
-    BSS:       load = COMBINED, type = bss, define = yes;
-    ZEROPAGE:  load = ZP,       type = zp;
-    EXTZP:     load = ZP,       type = zp;
+    ZEROPAGE: load = ZP,       type = zp;
+    EXTZP:    load = ZP,       type = zp, optional = yes;
+    HEADER:   load = COMBINED, type = ro;
+    ONCE:     load = COMBINED, type = ro, optional = yes;
+    CODE:     load = COMBINED, type = ro;
+    RODATA:   load = COMBINED, type = ro;
+    DATA:     load = COMBINED, type = rw;
+    BSS:      load = COMBINED, type = bss;
 }
 FILES {
     %O: format = o65;