]> git.sur5r.net Git - cc65/blobdiff - src/ld65/cfg/lynx-bll.cfg
Just some beautification.
[cc65] / src / ld65 / cfg / lynx-bll.cfg
index 468ed5e213ed41eb597a7ef71d8862b88d83122f..3d6cf19aae5facbb337a78e3c867e7c025101671 100644 (file)
@@ -1,8 +1,8 @@
 SYMBOLS {
-    __STACKSIZE__: type = weak, value = $0800; # 2k stack
+    __STACKSIZE__:        type = weak, value = $0800; # 2k stack
     __STARTOFDIRECTORY__: type = weak, value = $00CB; # start just after loader
-    __BLOCKSIZE__: type = weak, value = 1024; # cart block size
-    __BLLHDR__:    type = import;
+    __BLOCKSIZE__:        type = weak, value = $0400; # cart block size
+    __BLLHDR__:           type = import;
 }
 MEMORY {
     ZP:     file = "", define = yes, start = $0000, size = $0100;
@@ -23,16 +23,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__;
 }