]> git.sur5r.net Git - cc65/blobdiff - cfg/pce.cfg
simple conio test works again
[cc65] / cfg / pce.cfg
index b08e63814a2292f36304adc7aa2f756bca44fde9..f848fd737042ea50861c3d7cf5f70e56aad0e631 100644 (file)
@@ -1,5 +1,5 @@
 SYMBOLS {
-    __STACKSIZE__: type = weak, value = $0300; # 3 pages stack
+        __STACKSIZE__: type = weak, value = $0300; # 3 pages stack
 }
 MEMORY {
 
@@ -18,7 +18,7 @@ MEMORY {
     # Hardware Vectors at End of 2nd 8K ROM
        ROMV: start = $fff6, size = $a, file = %O,fill = yes;
 
-       ROM: start = $6000, size = $8000, file = %O, fill = yes,define=yes;
+#      ROM: start = $6000, size = $8000, file = %O, fill = yes,define=yes;
 
 
        # standard 2k SRAM (-zeropage)
@@ -43,8 +43,8 @@ SEGMENTS {
     STARTUP: load = ROM0, type = ro, define = yes;
 
     INIT:     load = ROM0,            type = ro,  define = yes, optional = yes;
-       CODE: load = ROM, type = ro, define = yes;
-    RODATA: load = ROM, type = ro, define = yes;
+       CODE: load = ROM0, type = ro, define = yes;
+    RODATA: load = ROM0, type = ro, define = yes;
 
        DATA: load = ROM0, run= RAM, type = rw, define = yes;
 #      BSS: load = RAM2, type = bss, define = yes;
@@ -58,12 +58,13 @@ SEGMENTS {
 
 }
 FEATURES {
-    CONDES: segment = STARTUP,
-           type=constructor,
-           label=__CONSTRUCTOR_TABLE__,
-           count=__CONSTRUCTOR_COUNT__;
-    CONDES: segment = STARTUP,
-           type=destructor,
-           label=__DESTRUCTOR_TABLE__,
-           count=__DESTRUCTOR_COUNT__;
+        CONDES: segment = STARTUP,
+        type=constructor,
+        label=__CONSTRUCTOR_TABLE__,
+        count=__CONSTRUCTOR_COUNT__;
+
+        CONDES: segment = STARTUP,
+        type=destructor,
+        label=__DESTRUCTOR_TABLE__,
+        count=__DESTRUCTOR_COUNT__;
 }