]> git.sur5r.net Git - cc65/blobdiff - cfg/supervision.cfg
again, some TABs slipped into the code...
[cc65] / cfg / supervision.cfg
index c96351e5f7eeb9ae8205ddc7db04532987a9e291..d9f189f2b5ba9691cb6507b23f942f35a676f5b3 100644 (file)
@@ -8,20 +8,20 @@ SYMBOLS {
 MEMORY {
     ZP:       file = "", start = $0000, size = $0100;
     CPUSTACK: file = "", start = $0100, size = $0100;
-    RAM:      file = "", start = $0200, size = $1E00 - __STACKSIZE__;
+    RAM:      file = "", start = $0200, size = $1E00 - __STACKSIZE__,            define = yes;
     VRAM:     file = "", start = $4000, size = $2000;
     ROM:      file = %O, start = $8000, size = $8000, fill = yes, fillval = $FF, define = yes;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,             type = zp,  define = yes;
-    LOWCODE:  load = ROM,            type = ro,                optional = yes;
-    ONCE:     load = ROM,            type = ro,                optional = yes;
-    CODE:     load = ROM,            type = ro,  define = yes;
-    RODATA:   load = ROM,            type = ro,  define = yes;
-    DATA:     load = ROM, run = RAM, type = rw,  define = yes;
-    FFF0:     load = ROM,            type = ro,  offset = $7FF0;
-    VECTOR:   load = ROM,            type = ro,  offset = $7FFA;
-    BSS:      load = RAM,            type = bss, define = yes;
+    ZEROPAGE: load = ZP,             type = zp,  define   = yes;
+    LOWCODE:  load = ROM,            type = ro,  optional = yes;
+    ONCE:     load = ROM,            type = ro,  optional = yes;
+    CODE:     load = ROM,            type = ro,  define   = yes;
+    RODATA:   load = ROM,            type = ro,  define   = yes;
+    DATA:     load = ROM, run = RAM, type = rw,  define   = yes;
+    FFF0:     load = ROM,            type = ro,  offset   = $7FF0;
+    VECTOR:   load = ROM,            type = ro,  offset   = $7FFA;
+    BSS:      load = RAM,            type = bss, define   = yes;
 }
 FEATURES {
     CONDES: type    = constructor,