]> git.sur5r.net Git - cc65/blobdiff - src/ld65/cfg/lynx-uploader.cfg
Just some beautification.
[cc65] / src / ld65 / cfg / lynx-uploader.cfg
index 96f43db4ea7585136b65727d08d4315aaa5c8992..4a1e87bee5ba5babe0b85de25960025a1e481d9b 100644 (file)
@@ -1,11 +1,11 @@
 SYMBOLS {
-    __STACKSIZE__: type = weak, value = $0800; # 2k stack
-    __STARTOFDIRECTORY__: type = weak, value = $00DF; # start just after loader
-    __BLOCKSIZE__: type = weak, value = 1024; # cart block size
-    __EXEHDR__:    type = import;
-    __BOOTLDR__:   type = import;
-    __DEFDIR__:    type = import;
-    __UPLOADER__:  type = import;
+    __STACKSIZE__:        type = weak, value = $0800; # 2k stack
+    __STARTOFDIRECTORY__: type = weak, value = $00CB; # start just after loader
+    __BLOCKSIZE__:        type = weak, value = $0400; # cart block size
+    __EXEHDR__:           type = import;
+    __BOOTLDR__:          type = import;
+    __DEFDIR__:           type = import;
+    __UPLOADER__:         type = import;
 }
 MEMORY {
     ZP:     file = "", define = yes, start = $0000, size = $0100;
@@ -33,16 +33,17 @@ SEGMENTS {
     APPZP:    load = ZP,     type = zp,                optional = yes;
 }
 FEATURES {
-    CONDES: segment = INIT,
-           type    = constructor,
-           label   = __CONSTRUCTOR_TABLE__,
-           count   = __CONSTRUCTOR_COUNT__;
-    CONDES: segment = RODATA,
-           type    = destructor,
-           label   = __DESTRUCTOR_TABLE__,
-           count   = __DESTRUCTOR_COUNT__;
-    CONDES: segment = RODATA,
-           type    = interruptor,
-           label   = __INTERRUPTOR_TABLE__,
-           count   = __INTERRUPTOR_COUNT__;
+    CONDES: type    = constructor,
+            label   = __CONSTRUCTOR_TABLE__,
+            count   = __CONSTRUCTOR_COUNT__,
+            segment = INIT;
+    CONDES: type    = destructor,
+            label   = __DESTRUCTOR_TABLE__,
+            count   = __DESTRUCTOR_COUNT__,
+            segment = RODATA;
+    CONDES: type    = interruptor,
+            label   = __INTERRUPTOR_TABLE__,
+            count   = __INTERRUPTOR_COUNT__,
+            segment = RODATA,
+            import  = __CALLIRQ__;
 }