]> git.sur5r.net Git - cc65/blobdiff - cfg/lynx-bll.cfg
Fixed LinuxDoc Tools issues in some verbatim blocks in the Atari document.
[cc65] / cfg / lynx-bll.cfg
index 21967752f5f5c36db362d26415489734fbcff833..adf1e7ab697d9b632385f10ef0d32c185d40c301 100644 (file)
@@ -1,32 +1,33 @@
 SYMBOLS {
     __STACKSIZE__:        type = weak, value = $0800; # 2k stack
     __STARTOFDIRECTORY__: type = weak, value = $00CB; # start just after loader
-    __BLOCKSIZE__:        type = weak, value = $0400; # cart block size
+    __BANK0BLOCKSIZE__:   type = weak, value = $0400; # bank 0 cart block size
+    __BANK1BLOCKSIZE__:   type = weak, value = $0000; # bank 1 block size
     __BLLHDR__:           type = import;
 }
 MEMORY {
     ZP:     file = "", define = yes, start = $0000, size = $0100;
     HEADER: file = %O,               start = $0000, size = $000a;
-    RAM:    file = %O, define = yes, start = $0400, size = $BC38 - __STACKSIZE__;
+    MAIN:   file = %O, define = yes, start = $0400, size = $BC38 - __STACKSIZE__;
 }
 SEGMENTS {
-    BLLHDR:   load = HEADER, type = ro;
-    STARTUP:  load = RAM,    type = ro,  define = yes;
-    LOWCODE:  load = RAM,    type = ro,  define = yes, optional = yes;
-    INIT:     load = RAM,    type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,    type = ro,  define = yes;
-    RODATA:   load = RAM,    type = ro,  define = yes;
-    DATA:     load = RAM,    type = rw,  define = yes;
-    BSS:      load = RAM,    type = bss, define = yes;
     ZEROPAGE: load = ZP,     type = zp;
     EXTZP:    load = ZP,     type = zp,                optional = yes;
     APPZP:    load = ZP,     type = zp,                optional = yes;
+    BLLHDR:   load = HEADER, type = ro;
+    STARTUP:  load = MAIN,   type = ro,  define = yes;
+    LOWCODE:  load = MAIN,   type = ro,  define = yes, optional = yes;
+    ONCE:     load = MAIN,   type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,   type = ro,  define = yes;
+    RODATA:   load = MAIN,   type = ro,  define = yes;
+    DATA:     load = MAIN,   type = rw,  define = yes;
+    BSS:      load = MAIN,   type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
             label   = __CONSTRUCTOR_TABLE__,
             count   = __CONSTRUCTOR_COUNT__,
-            segment = INIT;
+            segment = ONCE;
     CONDES: type    = destructor,
             label   = __DESTRUCTOR_TABLE__,
             count   = __DESTRUCTOR_COUNT__,