]> git.sur5r.net Git - cc65/commitdiff
Restructured according to coding conventions.
authorStephan Mühlstrasser <stephan.muehlstrasser@web.de>
Fri, 2 Jan 2015 19:28:36 +0000 (20:28 +0100)
committerStephan Mühlstrasser <stephan.muehlstrasser@web.de>
Fri, 2 Jan 2015 19:28:36 +0000 (20:28 +0100)
cfg/c1p.cfg

index 32be486d5fc38f5c4240b3b539fe745c7f34f12e..62adcd82039b1e92c30793f74284159b6bb6532b 100644 (file)
@@ -1,14 +1,7 @@
 FEATURES {
-    CONDES: type    = constructor,
-            label   = __CONSTRUCTOR_TABLE__,
-            count   = __CONSTRUCTOR_COUNT__,
-            segment = INIT;
-    CONDES: type    = destructor,
-            label   = __DESTRUCTOR_TABLE__,
-            count   = __DESTRUCTOR_COUNT__,
-            segment = RODATA;
     STARTADDRESS: default = $0200;
 }
+
 SYMBOLS {
     __STACKSIZE__: type = weak, value = $0400; # 1k stack
     __HIMEM__:     type = weak, value = $2000; # Presumed RAM end
@@ -29,3 +22,13 @@ SEGMENTS {
     ZEROPAGE: load = ZP,  type = zp;
     EXTZP:    load = ZP,  type = rw,  define = yes;
 }
+FEATURES {
+    CONDES: type    = constructor,
+            label   = __CONSTRUCTOR_TABLE__,
+            count   = __CONSTRUCTOR_COUNT__,
+            segment = INIT;
+    CONDES: type    = destructor,
+            label   = __DESTRUCTOR_TABLE__,
+            count   = __DESTRUCTOR_COUNT__,
+            segment = RODATA;
+}