]> git.sur5r.net Git - cc65/commitdiff
Renamed RAM to MAIN for all disk based targets.
authorOliver Schmidt <ol.sc@web.de>
Mon, 7 Mar 2016 00:28:55 +0000 (01:28 +0100)
committerOliver Schmidt <ol.sc@web.de>
Mon, 7 Mar 2016 00:28:55 +0000 (01:28 +0100)
The name RAM doesn't make much sense in general for a memeory area because i.e. the zero page is for sure RAM but is not part of the memory area named RAM.

For disk based targets it makes sense to put the disk file more into focus and here MAIN means the main part of the file - in contrast to some header.

Only for ROM based targets the name RAM is kept as it makes sense to focus on the difference between RAM and ROM.

52 files changed:
cfg/apple2-asm.cfg
cfg/apple2-overlay.cfg
cfg/apple2-system.cfg
cfg/apple2.cfg
cfg/apple2enh-asm.cfg
cfg/apple2enh-overlay.cfg
cfg/apple2enh-system.cfg
cfg/apple2enh.cfg
cfg/atari-asm.cfg
cfg/atari-cart.cfg
cfg/atari-cassette.cfg
cfg/atari-overlay.cfg
cfg/atari.cfg
cfg/atarixl-largehimem.cfg
cfg/atarixl-overlay.cfg
cfg/atarixl.cfg
cfg/atmos.cfg
cfg/bbc.cfg
cfg/c128-overlay.cfg
cfg/c128.cfg
cfg/c16.cfg
cfg/c64-asm.cfg
cfg/cbm510.cfg
cfg/cbm610.cfg
cfg/gamate.cfg
cfg/lunix.cfg
cfg/lynx-bll.cfg
cfg/lynx-coll.cfg
cfg/lynx-uploader.cfg
cfg/lynx.cfg
cfg/none.cfg
cfg/osic1p-asm.cfg
cfg/osic1p.cfg
cfg/plus4.cfg
cfg/sim6502.cfg
cfg/sim65c02.cfg
cfg/vic20-32k.cfg
cfg/vic20.cfg
doc/atari.sgml
libsrc/atari/crt0.s
libsrc/atari/exehdr.s
libsrc/atmos/crt0.s
libsrc/c128/crt0.s
libsrc/gamate/crt0.s
libsrc/lynx/bllhdr.s
libsrc/lynx/crt0.s
libsrc/lynx/defdir.s
libsrc/osic1p/bootstrap.s
libsrc/osic1p/crt0.s
libsrc/plus4/crt0.s
libsrc/sim6502/crt0.s
libsrc/vic20/crt0.s

index 1e187764ca0895b4803a20d27db6131969a3cde5..b9095cf0c17e29a937e9dccd6fe09020087a64e9 100644 (file)
@@ -10,13 +10,13 @@ SYMBOLS {
 MEMORY {
     ZP:                start = $0080, size = $001A,      define = yes;
     HEADER: file = %O, start = $0000, size = $0004;
-    RAM:    file = %O, start = %S,    size = $C000 - %S;
+    MAIN:   file = %O, start = %S,    size = $C000 - %S;
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,     type = zp,  optional = yes;
     EXEHDR:   load = HEADER, type = ro,  optional = yes;
-    CODE:     load = RAM,    type = rw,  optional = yes, define = yes;
-    RODATA:   load = RAM,    type = ro,  optional = yes;
-    DATA:     load = RAM,    type = rw,  optional = yes;
-    BSS:      load = RAM,    type = bss, optional = yes, define = yes;
+    CODE:     load = MAIN,   type = rw,  optional = yes, define = yes;
+    RODATA:   load = MAIN,   type = ro,  optional = yes;
+    DATA:     load = MAIN,   type = rw,  optional = yes;
+    BSS:      load = MAIN,   type = bss, optional = yes, define = yes;
 }
index ef9103b490e4b94123b0d45b694c772bd921542d..1e34b62507ac3b04c3f0b1d458747dc31ceb0226 100644 (file)
@@ -24,7 +24,7 @@ SYMBOLS {
 MEMORY {
     ZP:                define = yes, start = $0080,                size = $001A;
     HEADER: file = %O,               start = $0000,                size = $0004;
-    RAM:    file = %O,               start = %S + __OVERLAYSIZE__, size = __HIMEM__ - __STACKSIZE__ - __OVERLAYSIZE__ - %S;
+    MAIN:   file = %O,               start = %S + __OVERLAYSIZE__, size = __HIMEM__ - __STACKSIZE__ - __OVERLAYSIZE__ - %S;
     MOVE:   file = %O, define = yes, start = $0000,                size = $FFFF;
     LC:                define = yes, start = __LCADDR__,           size = __LCSIZE__;
     OVL1:   file = "%O.1",           start = %S,                   size = __OVERLAYSIZE__;
@@ -38,26 +38,26 @@ MEMORY {
     OVL9:   file = "%O.9",           start = %S,                   size = __OVERLAYSIZE__;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,              type = zp;
-    EXEHDR:   load = HEADER,          type = ro;
-    STARTUP:  load = RAM,             type = ro,  define = yes;
-    LOWCODE:  load = RAM,             type = ro,                optional = yes;
-    CODE:     load = RAM,             type = ro;
-    RODATA:   load = RAM,             type = ro;
-    DATA:     load = RAM,             type = rw;
-    INIT:     load = RAM,             type = bss, define = yes;
-    BSS:      load = RAM,             type = bss, define = yes;
-    ONCE:     load = MOVE, run = RAM, type = ro,  define = yes, optional = yes;
-    LC:       load = MOVE, run = LC,  type = ro,                optional = yes;
-    OVERLAY1: load = OVL1,            type = ro,  define = yes, optional = yes;
-    OVERLAY2: load = OVL2,            type = ro,  define = yes, optional = yes;
-    OVERLAY3: load = OVL3,            type = ro,  define = yes, optional = yes;
-    OVERLAY4: load = OVL4,            type = ro,  define = yes, optional = yes;
-    OVERLAY5: load = OVL5,            type = ro,  define = yes, optional = yes;
-    OVERLAY6: load = OVL6,            type = ro,  define = yes, optional = yes;
-    OVERLAY7: load = OVL7,            type = ro,  define = yes, optional = yes;
-    OVERLAY8: load = OVL8,            type = ro,  define = yes, optional = yes;
-    OVERLAY9: load = OVL9,            type = ro,  define = yes, optional = yes;
+    ZEROPAGE: load = ZP,               type = zp;
+    EXEHDR:   load = HEADER,           type = ro;
+    STARTUP:  load = MAIN,             type = ro,  define = yes;
+    LOWCODE:  load = MAIN,             type = ro,                optional = yes;
+    CODE:     load = MAIN,             type = ro;
+    RODATA:   load = MAIN,             type = ro;
+    DATA:     load = MAIN,             type = rw;
+    INIT:     load = MAIN,             type = bss, define = yes;
+    BSS:      load = MAIN,             type = bss, define = yes;
+    ONCE:     load = MOVE, run = MAIN, type = ro,  define = yes, optional = yes;
+    LC:       load = MOVE, run = LC,   type = ro,                optional = yes;
+    OVERLAY1: load = OVL1,             type = ro,  define = yes, optional = yes;
+    OVERLAY2: load = OVL2,             type = ro,  define = yes, optional = yes;
+    OVERLAY3: load = OVL3,             type = ro,  define = yes, optional = yes;
+    OVERLAY4: load = OVL4,             type = ro,  define = yes, optional = yes;
+    OVERLAY5: load = OVL5,             type = ro,  define = yes, optional = yes;
+    OVERLAY6: load = OVL6,             type = ro,  define = yes, optional = yes;
+    OVERLAY7: load = OVL7,             type = ro,  define = yes, optional = yes;
+    OVERLAY8: load = OVL8,             type = ro,  define = yes, optional = yes;
+    OVERLAY9: load = OVL9,             type = ro,  define = yes, optional = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 52cad960f8f168c51bafcbada85a8df9fa702b35..960be378c7634523f98852ebdd215a82f1329ce0 100644 (file)
@@ -10,19 +10,19 @@ SYMBOLS {
 }
 MEMORY {
     ZP:              define = yes, start = $0080,      size = $001A;
-    RAM:  file = %O,               start = $2000,      size = $9F00 - __STACKSIZE__;
+    MAIN: file = %O,               start = $2000,      size = $9F00 - __STACKSIZE__;
     MOVE: file = %O, define = yes, start = $0000,      size = $FFFF;
     LC:              define = yes, start = __LCADDR__, size = __LCSIZE__;
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,              type = zp;
-    STARTUP:  load = RAM,             type = ro,  define   = yes;
-    LOWCODE:  load = RAM,             type = ro,                  optional = yes;
-    CODE:     load = RAM,             type = ro;
-    RODATA:   load = RAM,             type = ro;
-    DATA:     load = RAM,             type = rw;
-    INIT:     load = RAM,             type = bss, define   = yes;
-    BSS:      load = RAM,             type = bss, define   = yes;
+    STARTUP:  load = MAIN,            type = ro,  define   = yes;
+    LOWCODE:  load = MAIN,            type = ro,                  optional = yes;
+    CODE:     load = MAIN,            type = ro;
+    RODATA:   load = MAIN,            type = ro;
+    DATA:     load = MAIN,            type = rw;
+    INIT:     load = MAIN,            type = bss, define   = yes;
+    BSS:      load = MAIN,            type = bss, define   = yes;
     ONCE:     load = MOVE, run = RAM, type = ro,  define   = yes, optional = yes;
     LC:       load = MOVE, run = LC,  type = ro,                  optional = yes;
 }
index 8e63090f5353e655c183c078b683382313aa5876..875103041f753da032eefde2f8e09aac0891842b 100644 (file)
@@ -16,22 +16,22 @@ SYMBOLS {
 MEMORY {
     ZP:                define = yes, start = $0080,      size = $001A;
     HEADER: file = %O,               start = $0000,      size = $0004;
-    RAM:    file = %O,               start = %S,         size = __HIMEM__ - __STACKSIZE__ - %S;
+    MAIN:   file = %O,               start = %S,         size = __HIMEM__ - __STACKSIZE__ - %S;
     MOVE:   file = %O, define = yes, start = $0000,      size = $FFFF;
     LC:                define = yes, start = __LCADDR__, size = __LCSIZE__;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,              type = zp;
-    EXEHDR:   load = HEADER,          type = ro;
-    STARTUP:  load = RAM,             type = ro,  define   = yes;
-    LOWCODE:  load = RAM,             type = ro,                  optional = yes;
-    CODE:     load = RAM,             type = ro;
-    RODATA:   load = RAM,             type = ro;
-    DATA:     load = RAM,             type = rw;
-    INIT:     load = RAM,             type = bss, define   = yes;
-    BSS:      load = RAM,             type = bss, define   = yes;
-    ONCE:     load = MOVE, run = RAM, type = ro,  define   = yes, optional = yes;
-    LC:       load = MOVE, run = LC,  type = ro,                  optional = yes;
+    ZEROPAGE: load = ZP,               type = zp;
+    EXEHDR:   load = HEADER,           type = ro;
+    STARTUP:  load = MAIN,             type = ro,  define   = yes;
+    LOWCODE:  load = MAIN,             type = ro,                  optional = yes;
+    CODE:     load = MAIN,             type = ro;
+    RODATA:   load = MAIN,             type = ro;
+    DATA:     load = MAIN,             type = rw;
+    INIT:     load = MAIN,             type = bss, define   = yes;
+    BSS:      load = MAIN,             type = bss, define   = yes;
+    ONCE:     load = MOVE, run = MAIN, type = ro,  define   = yes, optional = yes;
+    LC:       load = MOVE, run = LC,   type = ro,                  optional = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index e70ed4484e231c0c48971ba5d94ddf0bb8d44026..f7ede1bfecc6eb4c4b9c479e925782e8ed68edc7 100644 (file)
@@ -9,12 +9,12 @@ SYMBOLS {
 }
 MEMORY {
     HEADER: file = %O, start = $0000, size = $0004;
-    RAM:    file = %O, start = %S,    size = $C000 - %S;
+    MAIN:   file = %O, start = %S,    size = $C000 - %S;
 }
 SEGMENTS {
     EXEHDR: load = HEADER, type = ro,  optional = yes;
-    CODE:   load = RAM,    type = rw,  optional = yes, define = yes;
-    RODATA: load = RAM,    type = ro,  optional = yes;
-    DATA:   load = RAM,    type = rw,  optional = yes;
-    BSS:    load = RAM,    type = bss, optional = yes, define = yes;
+    CODE:   load = MAIN,   type = rw,  optional = yes, define = yes;
+    RODATA: load = MAIN,   type = ro,  optional = yes;
+    DATA:   load = MAIN,   type = rw,  optional = yes;
+    BSS:    load = MAIN,   type = bss, optional = yes, define = yes;
 }
index ef9103b490e4b94123b0d45b694c772bd921542d..1e34b62507ac3b04c3f0b1d458747dc31ceb0226 100644 (file)
@@ -24,7 +24,7 @@ SYMBOLS {
 MEMORY {
     ZP:                define = yes, start = $0080,                size = $001A;
     HEADER: file = %O,               start = $0000,                size = $0004;
-    RAM:    file = %O,               start = %S + __OVERLAYSIZE__, size = __HIMEM__ - __STACKSIZE__ - __OVERLAYSIZE__ - %S;
+    MAIN:   file = %O,               start = %S + __OVERLAYSIZE__, size = __HIMEM__ - __STACKSIZE__ - __OVERLAYSIZE__ - %S;
     MOVE:   file = %O, define = yes, start = $0000,                size = $FFFF;
     LC:                define = yes, start = __LCADDR__,           size = __LCSIZE__;
     OVL1:   file = "%O.1",           start = %S,                   size = __OVERLAYSIZE__;
@@ -38,26 +38,26 @@ MEMORY {
     OVL9:   file = "%O.9",           start = %S,                   size = __OVERLAYSIZE__;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,              type = zp;
-    EXEHDR:   load = HEADER,          type = ro;
-    STARTUP:  load = RAM,             type = ro,  define = yes;
-    LOWCODE:  load = RAM,             type = ro,                optional = yes;
-    CODE:     load = RAM,             type = ro;
-    RODATA:   load = RAM,             type = ro;
-    DATA:     load = RAM,             type = rw;
-    INIT:     load = RAM,             type = bss, define = yes;
-    BSS:      load = RAM,             type = bss, define = yes;
-    ONCE:     load = MOVE, run = RAM, type = ro,  define = yes, optional = yes;
-    LC:       load = MOVE, run = LC,  type = ro,                optional = yes;
-    OVERLAY1: load = OVL1,            type = ro,  define = yes, optional = yes;
-    OVERLAY2: load = OVL2,            type = ro,  define = yes, optional = yes;
-    OVERLAY3: load = OVL3,            type = ro,  define = yes, optional = yes;
-    OVERLAY4: load = OVL4,            type = ro,  define = yes, optional = yes;
-    OVERLAY5: load = OVL5,            type = ro,  define = yes, optional = yes;
-    OVERLAY6: load = OVL6,            type = ro,  define = yes, optional = yes;
-    OVERLAY7: load = OVL7,            type = ro,  define = yes, optional = yes;
-    OVERLAY8: load = OVL8,            type = ro,  define = yes, optional = yes;
-    OVERLAY9: load = OVL9,            type = ro,  define = yes, optional = yes;
+    ZEROPAGE: load = ZP,               type = zp;
+    EXEHDR:   load = HEADER,           type = ro;
+    STARTUP:  load = MAIN,             type = ro,  define = yes;
+    LOWCODE:  load = MAIN,             type = ro,                optional = yes;
+    CODE:     load = MAIN,             type = ro;
+    RODATA:   load = MAIN,             type = ro;
+    DATA:     load = MAIN,             type = rw;
+    INIT:     load = MAIN,             type = bss, define = yes;
+    BSS:      load = MAIN,             type = bss, define = yes;
+    ONCE:     load = MOVE, run = MAIN, type = ro,  define = yes, optional = yes;
+    LC:       load = MOVE, run = LC,   type = ro,                optional = yes;
+    OVERLAY1: load = OVL1,             type = ro,  define = yes, optional = yes;
+    OVERLAY2: load = OVL2,             type = ro,  define = yes, optional = yes;
+    OVERLAY3: load = OVL3,             type = ro,  define = yes, optional = yes;
+    OVERLAY4: load = OVL4,             type = ro,  define = yes, optional = yes;
+    OVERLAY5: load = OVL5,             type = ro,  define = yes, optional = yes;
+    OVERLAY6: load = OVL6,             type = ro,  define = yes, optional = yes;
+    OVERLAY7: load = OVL7,             type = ro,  define = yes, optional = yes;
+    OVERLAY8: load = OVL8,             type = ro,  define = yes, optional = yes;
+    OVERLAY9: load = OVL9,             type = ro,  define = yes, optional = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 52cad960f8f168c51bafcbada85a8df9fa702b35..6134851f015581958c44a57c4615a496dbdee7b7 100644 (file)
@@ -10,21 +10,21 @@ SYMBOLS {
 }
 MEMORY {
     ZP:              define = yes, start = $0080,      size = $001A;
-    RAM:  file = %O,               start = $2000,      size = $9F00 - __STACKSIZE__;
+    MAIN: file = %O,               start = $2000,      size = $9F00 - __STACKSIZE__;
     MOVE: file = %O, define = yes, start = $0000,      size = $FFFF;
     LC:              define = yes, start = __LCADDR__, size = __LCSIZE__;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,              type = zp;
-    STARTUP:  load = RAM,             type = ro,  define   = yes;
-    LOWCODE:  load = RAM,             type = ro,                  optional = yes;
-    CODE:     load = RAM,             type = ro;
-    RODATA:   load = RAM,             type = ro;
-    DATA:     load = RAM,             type = rw;
-    INIT:     load = RAM,             type = bss, define   = yes;
-    BSS:      load = RAM,             type = bss, define   = yes;
-    ONCE:     load = MOVE, run = RAM, type = ro,  define   = yes, optional = yes;
-    LC:       load = MOVE, run = LC,  type = ro,                  optional = yes;
+    ZEROPAGE: load = ZP,               type = zp;
+    STARTUP:  load = MAIN,             type = ro,  define   = yes;
+    LOWCODE:  load = MAIN,             type = ro,                  optional = yes;
+    CODE:     load = MAIN,             type = ro;
+    RODATA:   load = MAIN,             type = ro;
+    DATA:     load = MAIN,             type = rw;
+    INIT:     load = MAIN,             type = bss, define   = yes;
+    BSS:      load = MAIN,             type = bss, define   = yes;
+    ONCE:     load = MOVE, run = MAIN, type = ro,  define   = yes, optional = yes;
+    LC:       load = MOVE, run = LC,   type = ro,                  optional = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 8e63090f5353e655c183c078b683382313aa5876..875103041f753da032eefde2f8e09aac0891842b 100644 (file)
@@ -16,22 +16,22 @@ SYMBOLS {
 MEMORY {
     ZP:                define = yes, start = $0080,      size = $001A;
     HEADER: file = %O,               start = $0000,      size = $0004;
-    RAM:    file = %O,               start = %S,         size = __HIMEM__ - __STACKSIZE__ - %S;
+    MAIN:   file = %O,               start = %S,         size = __HIMEM__ - __STACKSIZE__ - %S;
     MOVE:   file = %O, define = yes, start = $0000,      size = $FFFF;
     LC:                define = yes, start = __LCADDR__, size = __LCSIZE__;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,              type = zp;
-    EXEHDR:   load = HEADER,          type = ro;
-    STARTUP:  load = RAM,             type = ro,  define   = yes;
-    LOWCODE:  load = RAM,             type = ro,                  optional = yes;
-    CODE:     load = RAM,             type = ro;
-    RODATA:   load = RAM,             type = ro;
-    DATA:     load = RAM,             type = rw;
-    INIT:     load = RAM,             type = bss, define   = yes;
-    BSS:      load = RAM,             type = bss, define   = yes;
-    ONCE:     load = MOVE, run = RAM, type = ro,  define   = yes, optional = yes;
-    LC:       load = MOVE, run = LC,  type = ro,                  optional = yes;
+    ZEROPAGE: load = ZP,               type = zp;
+    EXEHDR:   load = HEADER,           type = ro;
+    STARTUP:  load = MAIN,             type = ro,  define   = yes;
+    LOWCODE:  load = MAIN,             type = ro,                  optional = yes;
+    CODE:     load = MAIN,             type = ro;
+    RODATA:   load = MAIN,             type = ro;
+    DATA:     load = MAIN,             type = rw;
+    INIT:     load = MAIN,             type = bss, define   = yes;
+    BSS:      load = MAIN,             type = bss, define   = yes;
+    ONCE:     load = MOVE, run = MAIN, type = ro,  define   = yes, optional = yes;
+    LC:       load = MOVE, run = LC,   type = ro,                  optional = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 4ff7c3173ebdf21c7aa5514a2f708f686b2f1f3b..bea5477659bb6a07df5827ed4bb1c324bf2a117c 100644 (file)
@@ -2,29 +2,29 @@ FEATURES {
     STARTADDRESS: default = $2E00;
 }
 SYMBOLS {
-    __EXEHDR__:          type = import;
-    __AUTOSTART__:       type = import;  # force inclusion of autostart "trailer"
-    __STARTADDRESS__:    type = export, value = %S;
+    __EXEHDR__:       type = import;
+    __AUTOSTART__:    type = import;  # force inclusion of autostart "trailer"
+    __STARTADDRESS__: type = export, value = %S;
 }
 MEMORY {
-    ZP:            file = "", define = yes, start = $0082, size = $007E;
+    ZP:      file = "", define = yes, start = $0082, size = $007E;
 
 # file header, just $FFFF
-    HEADER:        file = %O,               start = $0000, size = $0002;
+    HEADER:  file = %O,               start = $0000, size = $0002;
 
 # "main program" load chunk
-    MAINHDR:       file = %O,               start = $0000, size = $0004;
-    RAM:           file = %O, define = yes, start = %S,    size = $BC20 - %S;
-    TRAILER:       file = %O,               start = $0000, size = $0006;
+    MAINHDR: file = %O,               start = $0000, size = $0004;
+    MAIN:    file = %O, define = yes, start = %S,    size = $BC20 - %S;
+    TRAILER: file = %O,               start = $0000, size = $0006;
 }
 SEGMENTS {
-    EXEHDR:    load = HEADER,     type = ro,                optional = yes;
-    MAINHDR:   load = MAINHDR,    type = ro,                optional = yes;
-    CODE:      load = RAM,        type = ro,  define = yes, optional = yes;
-    RODATA:    load = RAM,        type = ro                 optional = yes;
-    DATA:      load = RAM,        type = rw                 optional = yes;
-    BSS:       load = RAM,        type = bss, define = yes, optional = yes;
-    ZEROPAGE:  load = ZP,         type = zp,                optional = yes;
-    EXTZP:     load = ZP,         type = zp,                optional = yes; # to enable modules to be able to link to C and assembler programs
-    AUTOSTRT:  load = TRAILER,    type = ro,                optional = yes;
+    ZEROPAGE: load = ZP,      type = zp,                optional = yes;
+    EXTZP:    load = ZP,      type = zp,                optional = yes; # to enable modules to be able to link to C and assembler programs
+    EXEHDR:   load = HEADER,  type = ro,                optional = yes;
+    MAINHDR:  load = MAINHDR, type = ro,                optional = yes;
+    CODE:     load = MAIN,    type = ro,  define = yes, optional = yes;
+    RODATA:   load = MAIN,    type = ro                 optional = yes;
+    DATA:     load = MAIN,    type = rw                 optional = yes;
+    BSS:      load = MAIN,    type = bss, define = yes, optional = yes;
+    AUTOSTRT: load = TRAILER, type = ro,                optional = yes;
 }
index 09bf86761b7b79a6ed52ba5eec8fbfafab576d84..31d2cb1b97ec93a9554a14c666b9148d6318db15 100644 (file)
@@ -10,23 +10,23 @@ SYMBOLS {
     __CARTFLAGS__:       type = weak,   value = $01;   # see documentation for other possible values
 }
 MEMORY {
-    ZP:         file = "", define = yes, start = $0082,                size = $007E;
-    RAM:        file = "", define = yes, start = %S,                   size = __CARTSIZE__;
-    ROM:        file = %O, define = yes, start = $C000 - __CARTSIZE__, size = __CARTSIZE__ - 6, fill = yes, fillval = $FF;
-    CARTID:     file = %O,               start = $BFFA,                size = $0006;
+    ZP:     file = "", define = yes, start = $0082,                size = $007E;
+    MAIN:   file = "", define = yes, start = %S,                   size = __CARTSIZE__;
+    ROM:    file = %O, define = yes, start = $C000 - __CARTSIZE__, size = __CARTSIZE__ - 6, fill = yes, fillval = $FF;
+    CARTID: file = %O,               start = $BFFA,                size = $0006;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,             type = zp,                optional = yes;
-    EXTZP:    load = ZP,             type = zp,                optional = yes;
-    STARTUP:  load = ROM,            type = ro,  define = yes, optional = yes;
-    LOWCODE:  load = ROM,            type = ro,  define = yes, optional = yes;
-    ONCE:     load = ROM,            type = ro,                optional = yes;
-    CODE:     load = ROM,            type = ro,  define = yes;
-    RODATA:   load = ROM,            type = ro,                optional = yes;
-    DATA:     load = ROM, run = RAM, type = rw,  define = yes, optional = yes;
-    INIT:     load = RAM,            type = bss,               optional = yes;
-    BSS:      load = RAM,            type = bss, define = yes, optional = yes;
-    CARTHDR:  load = CARTID,         type = ro;
+    ZEROPAGE: load = ZP,              type = zp,                optional = yes;
+    EXTZP:    load = ZP,              type = zp,                optional = yes;
+    STARTUP:  load = ROM,             type = ro,  define = yes, optional = yes;
+    LOWCODE:  load = ROM,             type = ro,  define = yes, optional = yes;
+    ONCE:     load = ROM,             type = ro,                optional = yes;
+    CODE:     load = ROM,             type = ro,  define = yes;
+    RODATA:   load = ROM,             type = ro,                optional = yes;
+    DATA:     load = ROM, run = MAIN, type = rw,  define = yes, optional = yes;
+    INIT:     load = MAIN,            type = bss,               optional = yes;
+    BSS:      load = MAIN,            type = bss, define = yes, optional = yes;
+    CARTHDR:  load = CARTID,          type = ro;
 }
 FEATURES {
     CONDES: type    = constructor,
index ad68bb8b41b6bfdf34dc5313b61bd00c88943f69..b138b8f0ecf1e6b2d5abfcb2fe3d04cdf864cf79 100644 (file)
@@ -8,21 +8,21 @@ SYMBOLS {
     _cas_hdr:            type = import;
 }
 MEMORY {
-    ZP:            file = "", define = yes, start = $0082, size = $007E;
-    RAM:           file = %O, define = yes, start = %S,    size = $BC20 - __STACKSIZE__ - __RESERVED_MEMORY__ - %S;
+    ZP:   file = "", define = yes, start = $0082, size = $007E;
+    MAIN: file = %O, define = yes, start = %S,    size = $BC20 - __STACKSIZE__ - __RESERVED_MEMORY__ - %S;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,  type = zp,                optional = yes;
-    EXTZP:    load = ZP,  type = zp,                optional = yes;
-    CASHDR:   load = RAM, type = ro;
-    STARTUP:  load = RAM, type = ro,  define = yes, optional = yes;
-    LOWCODE:  load = RAM, type = ro,  define = yes, optional = yes;
-    ONCE:     load = RAM, type = ro,                optional = yes;
-    CODE:     load = RAM, type = ro,  define = yes;
-    RODATA:   load = RAM, type = ro,                optional = yes;
-    DATA:     load = RAM, type = rw,                optional = yes;
-    INIT:     load = RAM, type = bss,               optional = yes;
-    BSS:      load = RAM, type = bss, define = yes, optional = yes;
+    ZEROPAGE: load = ZP,   type = zp,                optional = yes;
+    EXTZP:    load = ZP,   type = zp,                optional = yes;
+    CASHDR:   load = MAIN, type = ro;
+    STARTUP:  load = MAIN, type = ro,  define = yes, optional = yes;
+    LOWCODE:  load = MAIN, type = ro,  define = yes, optional = yes;
+    ONCE:     load = MAIN, type = ro,                optional = yes;
+    CODE:     load = MAIN, type = ro,  define = yes;
+    RODATA:   load = MAIN, type = ro,                optional = yes;
+    DATA:     load = MAIN, type = rw,                optional = yes;
+    INIT:     load = MAIN, type = bss,               optional = yes;
+    BSS:      load = MAIN, type = bss, define = yes, optional = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index b14a93a396ac546aab50ef4f25368829776bbde3..1dec49b7d01f111ec7445dd94dd083062bc69c71 100644 (file)
@@ -11,31 +11,31 @@ SYMBOLS {
     __RESERVED_MEMORY__: type = weak, value = $0000;
 }
 MEMORY {
-    ZP:            file = "", define = yes, start = $0082, size = $007E;
+    ZP:         file = "", define = yes, start = $0082, size = $007E;
 
 # file header, just $FFFF
-    HEADER:        file = %O,               start = $0000, size = $0002;
+    HEADER:     file = %O,               start = $0000, size = $0002;
 
 # "system check" load chunk
-    SYSCHKHDR:     file = %O,               start = $0000, size = $0004;
-    SYSCHKCHNK:    file = %O,               start = $2E00, size = $0300;
-    SYSCHKTRL:     file = %O,               start = $0000, size = $0006;
+    SYSCHKHDR:  file = %O,               start = $0000, size = $0004;
+    SYSCHKCHNK: file = %O,               start = $2E00, size = $0300;
+    SYSCHKTRL:  file = %O,               start = $0000, size = $0006;
 
 # "main program" load chunk
-    MAINHDR:       file = %O,               start = $0000, size = $0004;
-    RAM:           file = %O, define = yes, start = %S + __OVERLAYSIZE__,
+    MAINHDR:    file = %O,               start = $0000, size = $0004;
+    MAIN:       file = %O, define = yes, start = %S + __OVERLAYSIZE__,
                                                            size = $BC20 - __OVERLAYSIZE__ - __STACKSIZE__ - __RESERVED_MEMORY__ - %S;
-    TRAILER:       file = %O,               start = $0000, size = $0006;
+    TRAILER:    file = %O,               start = $0000, size = $0006;
 
-    OVL1:          file = "%O.1",           start = %S,    size = __OVERLAYSIZE__;
-    OVL2:          file = "%O.2",           start = %S,    size = __OVERLAYSIZE__;
-    OVL3:          file = "%O.3",           start = %S,    size = __OVERLAYSIZE__;
-    OVL4:          file = "%O.4",           start = %S,    size = __OVERLAYSIZE__;
-    OVL5:          file = "%O.5",           start = %S,    size = __OVERLAYSIZE__;
-    OVL6:          file = "%O.6",           start = %S,    size = __OVERLAYSIZE__;
-    OVL7:          file = "%O.7",           start = %S,    size = __OVERLAYSIZE__;
-    OVL8:          file = "%O.8",           start = %S,    size = __OVERLAYSIZE__;
-    OVL9:          file = "%O.9",           start = %S,    size = __OVERLAYSIZE__;
+    OVL1:       file = "%O.1",           start = %S,    size = __OVERLAYSIZE__;
+    OVL2:       file = "%O.2",           start = %S,    size = __OVERLAYSIZE__;
+    OVL3:       file = "%O.3",           start = %S,    size = __OVERLAYSIZE__;
+    OVL4:       file = "%O.4",           start = %S,    size = __OVERLAYSIZE__;
+    OVL5:       file = "%O.5",           start = %S,    size = __OVERLAYSIZE__;
+    OVL6:       file = "%O.6",           start = %S,    size = __OVERLAYSIZE__;
+    OVL7:       file = "%O.7",           start = %S,    size = __OVERLAYSIZE__;
+    OVL8:       file = "%O.8",           start = %S,    size = __OVERLAYSIZE__;
+    OVL9:       file = "%O.9",           start = %S,    size = __OVERLAYSIZE__;
 }
 SEGMENTS {
     ZEROPAGE:  load = ZP,         type = zp;
@@ -45,14 +45,14 @@ SEGMENTS {
     SYSCHK:    load = SYSCHKCHNK, type = rw,  define = yes, optional = yes;
     SYSCHKTRL: load = SYSCHKTRL,  type = ro,                optional = yes;
     MAINHDR:   load = MAINHDR,    type = ro;
-    STARTUP:   load = RAM,        type = ro,  define = yes;
-    LOWCODE:   load = RAM,        type = ro,  define = yes, optional = yes;
-    ONCE:      load = RAM,        type = ro,                optional = yes;
-    CODE:      load = RAM,        type = ro,  define = yes;
-    RODATA:    load = RAM,        type = ro;
-    DATA:      load = RAM,        type = rw;
-    INIT:      load = RAM,        type = bss,               optional = yes;
-    BSS:       load = RAM,        type = bss, define = yes;
+    STARTUP:   load = MAIN,       type = ro,  define = yes;
+    LOWCODE:   load = MAIN,       type = ro,  define = yes, optional = yes;
+    ONCE:      load = MAIN,       type = ro,                optional = yes;
+    CODE:      load = MAIN,       type = ro,  define = yes;
+    RODATA:    load = MAIN,       type = ro;
+    DATA:      load = MAIN,       type = rw;
+    INIT:      load = MAIN,       type = bss,               optional = yes;
+    BSS:       load = MAIN,       type = bss, define = yes;
     AUTOSTRT:  load = TRAILER,    type = ro;
     OVERLAY1:  load = OVL1,       type = ro,  define = yes, optional = yes;
     OVERLAY2:  load = OVL2,       type = ro,  define = yes, optional = yes;
index 7460a0f66d35c907cac5dabe7e08438c9c7c1573..959a07e4c8e24d1643cd9b2ef05b80c5a4b8798f 100644 (file)
@@ -10,20 +10,20 @@ SYMBOLS {
     __RESERVED_MEMORY__: type = weak, value = $0000;
 }
 MEMORY {
-    ZP:            file = "", define = yes, start = $0082, size = $007E;
+    ZP:         file = "", define = yes, start = $0082, size = $007E;
 
 # file header, just $FFFF
-    HEADER:        file = %O,               start = $0000, size = $0002;
+    HEADER:     file = %O,               start = $0000, size = $0002;
 
 # "system check" load chunk
-    SYSCHKHDR:     file = %O,               start = $0000, size = $0004;
-    SYSCHKCHNK:    file = %O,               start = $2E00, size = $0300;
-    SYSCHKTRL:     file = %O,               start = $0000, size = $0006;
+    SYSCHKHDR:  file = %O,               start = $0000, size = $0004;
+    SYSCHKCHNK: file = %O,               start = $2E00, size = $0300;
+    SYSCHKTRL:  file = %O,               start = $0000, size = $0006;
 
 # "main program" load chunk
-    MAINHDR:       file = %O,               start = $0000, size = $0004;
-    RAM:           file = %O, define = yes, start = %S,    size = $BC20 - __STACKSIZE__ - __RESERVED_MEMORY__ - %S;
-    TRAILER:       file = %O,               start = $0000, size = $0006;
+    MAINHDR:    file = %O,               start = $0000, size = $0004;
+    MAIN:       file = %O, define = yes, start = %S,    size = $BC20 - __STACKSIZE__ - __RESERVED_MEMORY__ - %S;
+    TRAILER:    file = %O,               start = $0000, size = $0006;
 }
 SEGMENTS {
     ZEROPAGE:  load = ZP,         type = zp;
@@ -33,14 +33,14 @@ SEGMENTS {
     SYSCHK:    load = SYSCHKCHNK, type = rw,  define = yes, optional = yes;
     SYSCHKTRL: load = SYSCHKTRL,  type = ro,                optional = yes;
     MAINHDR:   load = MAINHDR,    type = ro;
-    STARTUP:   load = RAM,        type = ro,  define = yes;
-    LOWCODE:   load = RAM,        type = ro,  define = yes, optional = yes;
-    ONCE:      load = RAM,        type = ro,                optional = yes;
-    CODE:      load = RAM,        type = ro,  define = yes;
-    RODATA:    load = RAM,        type = ro;
-    DATA:      load = RAM,        type = rw;
-    INIT:      load = RAM,        type = bss,               optional = yes;
-    BSS:       load = RAM,        type = bss, define = yes;
+    STARTUP:   load = MAIN,       type = ro,  define = yes;
+    LOWCODE:   load = MAIN,       type = ro,  define = yes, optional = yes;
+    ONCE:      load = MAIN,       type = ro,                optional = yes;
+    CODE:      load = MAIN,       type = ro,  define = yes;
+    RODATA:    load = MAIN,       type = ro;
+    DATA:      load = MAIN,       type = rw;
+    INIT:      load = MAIN,       type = bss,               optional = yes;
+    BSS:       load = MAIN,       type = bss, define = yes;
     AUTOSTRT:  load = TRAILER,    type = ro;
 }
 FEATURES {
index a1ec5cf08dcfa53db545ec1eab92f1e476cc8b67..94405fce2459e5e95286005c47342d22b29df6d8 100644 (file)
@@ -8,45 +8,45 @@ FEATURES {
 }
 
 SYMBOLS {
-    __EXEHDR__:          type = import;
-    __SYSTEM_CHECK__:    type = import;  # force inclusion of "system check" load chunk
-    __AUTOSTART__:       type = import;  # force inclusion of autostart "trailer"
-    __STACKSIZE__:       type = weak, value = $0800; # 2k stack
-    __STARTADDRESS__:    type = export, value = %S;
+    __EXEHDR__:       type = import;
+    __SYSTEM_CHECK__: type = import;  # force inclusion of "system check" load chunk
+    __AUTOSTART__:    type = import;  # force inclusion of autostart "trailer"
+    __STACKSIZE__:    type = weak, value = $0800; # 2k stack
+    __STARTADDRESS__: type = export, value = %S;
 }
 
 MEMORY {
-    ZP:            file = "", define = yes, start = $0082,                  size = $007E;
+    ZP:         file = "", define = yes, start = $0082,                  size = $007E;
 
 # just $FFFF
-    HEADER:        file = %O,               start = $0000,                  size = $0002;
+    HEADER:     file = %O,               start = $0000,                  size = $0002;
 
 # "system check" load chunk
-    SYSCHKHDR:     file = %O,               start = $0000,                  size = $0004;
-    SYSCHKCHNK:    file = %O,               start = $2E00,                  size = $0300;
-    SYSCHKTRL:     file = %O,               start = $0000,                  size = $0006;
+    SYSCHKHDR:  file = %O,               start = $0000,                  size = $0004;
+    SYSCHKCHNK: file = %O,               start = $2E00,                  size = $0300;
+    SYSCHKTRL:  file = %O,               start = $0000,                  size = $0006;
 
 # "shadow RAM preparation" load chunk
-    SRPREPHDR:     file = %O,               start = $0000,                  size = $0004;
-    SRPREPCHNK:    file = %O, define = yes, start = %S,                     size = $7C20 - %S - $07FF;  # $07FF: space for temp. chargen buffer, 1K aligned
-    SRPREPTRL:     file = %O,               start = $0000,                  size = $0006;
+    SRPREPHDR:  file = %O,               start = $0000,                  size = $0004;
+    SRPREPCHNK: file = %O, define = yes, start = %S,                     size = $7C20 - %S - $07FF;  # $07FF: space for temp. chargen buffer, 1K aligned
+    SRPREPTRL:  file = %O,               start = $0000,                  size = $0006;
 
 # "main program" load chunk
-    MAINHDR:       file = %O,               start = $0000,                  size = $0004;
-    RAM:           file = %O, define = yes, start = %S +
-                                                    __LOWBSS_SIZE__,        size = $D000 -
-                                                                                   __STACKSIZE__ -
-                                                                                   %S -
-                                                                                   __LOWBSS_SIZE__;
+    MAINHDR:    file = %O,               start = $0000,                  size = $0004;
+    MAIN:       file = %O, define = yes, start = %S +
+                                                 __LOWBSS_SIZE__,        size = $D000 -
+                                                                                __STACKSIZE__ -
+                                                                                %S -
+                                                                                __LOWBSS_SIZE__;
 
 # defines entry point into program
-    TRAILER:       file = %O,               start = $0000, size = $0006;
+    TRAILER:    file = %O,               start = $0000, size = $0006;
 
 # address of relocated character generator
-    CHARGEN:       file = "", define = yes, start = $D800, size = $0400;
+    CHARGEN:    file = "", define = yes, start = $D800, size = $0400;
 
 # memory beneath the ROM
-    HIDDEN_RAM:    file = "", define = yes, start = $DC00, size = $FFFA - $DC00;
+    HIDDEN_RAM: file = "", define = yes, start = $DC00, size = $FFFA - $DC00;
 }
 
 SEGMENTS {
@@ -67,14 +67,14 @@ SEGMENTS {
     SRPREPTRL:   load = SRPREPTRL,                    type = ro;
 
     MAINHDR:     load = MAINHDR,                      type = ro;
-    STARTUP:     load = RAM,                          type = ro,  define = yes;
-    LOWCODE:     load = RAM,                          type = ro,  define = yes, optional = yes;
-    ONCE:        load = RAM,                          type = ro,                optional = yes;
-    CODE:        load = RAM,                          type = ro,  define = yes;
-    RODATA:      load = RAM,                          type = ro;
-    DATA:        load = RAM,                          type = rw;
-    INIT:        load = RAM,                          type = bss,               optional = yes;
-    BSS:         load = RAM,                          type = bss, define = yes;
+    STARTUP:     load = MAIN,                         type = ro,  define = yes;
+    LOWCODE:     load = MAIN,                         type = ro,  define = yes, optional = yes;
+    ONCE:        load = MAIN,                         type = ro,                optional = yes;
+    CODE:        load = MAIN,                         type = ro,  define = yes;
+    RODATA:      load = MAIN,                         type = ro;
+    DATA:        load = MAIN,                         type = rw;
+    INIT:        load = MAIN,                         type = bss,               optional = yes;
+    BSS:         load = MAIN,                         type = bss, define = yes;
     AUTOSTRT:    load = TRAILER,                      type = ro;
 }
 FEATURES {
index b0b4f3b887bb067d55af2025e36bda06a4a57aa4..89240170b25948c2d0575d1f0a5e60ab0a66f075 100644 (file)
@@ -3,62 +3,62 @@ FEATURES {
 }
 
 SYMBOLS {
-    __EXEHDR__:          type = import;
-    __SYSTEM_CHECK__:    type = import;  # force inclusion of "system check" load chunk
-    __AUTOSTART__:       type = import;  # force inclusion of autostart "trailer"
-    __STACKSIZE__:       type = weak, value = $0800; # 2k stack
-    __OVERLAYSIZE__:     type = weak, value = $1000; # 4k overlay
-    __STARTADDRESS__:    type = export, value = %S;
+    __EXEHDR__:       type = import;
+    __SYSTEM_CHECK__: type = import;  # force inclusion of "system check" load chunk
+    __AUTOSTART__:    type = import;  # force inclusion of autostart "trailer"
+    __STACKSIZE__:    type = weak, value = $0800; # 2k stack
+    __OVERLAYSIZE__:  type = weak, value = $1000; # 4k overlay
+    __STARTADDRESS__: type = export, value = %S;
 }
 
 MEMORY {
-    ZP:            file = "", define = yes, start = $0082,                  size = $007E;
+    ZP:          file = "", define = yes, start = $0082,                  size = $007E;
 
 # just $FFFF
-    HEADER:        file = %O,               start = $0000,                  size = $0002;
+    HEADER:      file = %O,               start = $0000,                  size = $0002;
 
 # "system check" load chunk
-    SYSCHKHDR:     file = %O,               start = $0000,                  size = $0004;
-    SYSCHKCHNK:    file = %O,               start = $2E00,                  size = $0300;
-    SYSCHKTRL:     file = %O,               start = $0000,                  size = $0006;
+    SYSCHKHDR:   file = %O,               start = $0000,                  size = $0004;
+    SYSCHKCHNK:  file = %O,               start = $2E00,                  size = $0300;
+    SYSCHKTRL:   file = %O,               start = $0000,                  size = $0006;
 
 # "shadow RAM preparation" load chunk
-    SRPREPHDR:     file = %O,               start = $0000,                  size = $0004;
-    SRPREPCHNK:    file = %O, define = yes, start = %S + __OVERLAYSIZE__,   size = $7C20 - %S - __OVERLAYSIZE__ - $07FF;  # $07FF: space for temp. chargen buffer, 1K aligned
-    SRPREPTRL:     file = %O,               start = $0000,                  size = $0006;
+    SRPREPHDR:   file = %O,               start = $0000,                  size = $0004;
+    SRPREPCHNK:  file = %O, define = yes, start = %S + __OVERLAYSIZE__,   size = $7C20 - %S - __OVERLAYSIZE__ - $07FF;  # $07FF: space for temp. chargen buffer, 1K aligned
+    SRPREPTRL:   file = %O,               start = $0000,                  size = $0006;
 
 # "main program" load chunk
-    MAINHDR:       file = %O,               start = $0000,                  size = $0004;
-    RAM:           file = %O, define = yes, start = %S +
-                                                    __OVERLAYSIZE__ +
-                                                    __LOWBSS_SIZE__,        size = $D000 -
-                                                                                   __STACKSIZE__ -
-                                                                                   %S -
-                                                                                   __OVERLAYSIZE__ -
-                                                                                   __LOWBSS_SIZE__;
+    MAINHDR:     file = %O,               start = $0000,                  size = $0004;
+    MAIN:        file = %O, define = yes, start = %S +
+                                                  __OVERLAYSIZE__ +
+                                                  __LOWBSS_SIZE__,        size = $D000 -
+                                                                                 __STACKSIZE__ -
+                                                                                 %S -
+                                                                                 __OVERLAYSIZE__ -
+                                                                                 __LOWBSS_SIZE__;
 
 # defines entry point into program
-    TRAILER:       file = %O,               start = $0000, size = $0006;
+    TRAILER:     file = %O,               start = $0000, size = $0006;
 
 # memory beneath the ROM preceeding the character generator
-    HIDDEN_RAM2:   file = "", define = yes, start = $D800, size = $0800;
+    HIDDEN_RAM2: file = "", define = yes, start = $D800, size = $0800;
 
 # address of relocated character generator (same addess as ROM version)
-    CHARGEN:       file = "", define = yes, start = $E000, size = $0400;
+    CHARGEN:     file = "", define = yes, start = $E000, size = $0400;
 
 # memory beneath the ROM
-    HIDDEN_RAM:    file = "", define = yes, start = $E400, size = $FFFA - $E400;
+    HIDDEN_RAM:  file = "", define = yes, start = $E400, size = $FFFA - $E400;
 
 # overlays
-    OVL1:          file = "%O.1",           start = %S,                     size = __OVERLAYSIZE__;
-    OVL2:          file = "%O.2",           start = %S,                     size = __OVERLAYSIZE__;
-    OVL3:          file = "%O.3",           start = %S,                     size = __OVERLAYSIZE__;
-    OVL4:          file = "%O.4",           start = %S,                     size = __OVERLAYSIZE__;
-    OVL5:          file = "%O.5",           start = %S,                     size = __OVERLAYSIZE__;
-    OVL6:          file = "%O.6",           start = %S,                     size = __OVERLAYSIZE__;
-    OVL7:          file = "%O.7",           start = %S,                     size = __OVERLAYSIZE__;
-    OVL8:          file = "%O.8",           start = %S,                     size = __OVERLAYSIZE__;
-    OVL9:          file = "%O.9",           start = %S,                     size = __OVERLAYSIZE__;
+    OVL1:        file = "%O.1",           start = %S,                     size = __OVERLAYSIZE__;
+    OVL2:        file = "%O.2",           start = %S,                     size = __OVERLAYSIZE__;
+    OVL3:        file = "%O.3",           start = %S,                     size = __OVERLAYSIZE__;
+    OVL4:        file = "%O.4",           start = %S,                     size = __OVERLAYSIZE__;
+    OVL5:        file = "%O.5",           start = %S,                     size = __OVERLAYSIZE__;
+    OVL6:        file = "%O.6",           start = %S,                     size = __OVERLAYSIZE__;
+    OVL7:        file = "%O.7",           start = %S,                     size = __OVERLAYSIZE__;
+    OVL8:        file = "%O.8",           start = %S,                     size = __OVERLAYSIZE__;
+    OVL9:        file = "%O.9",           start = %S,                     size = __OVERLAYSIZE__;
 }
 
 SEGMENTS {
@@ -79,14 +79,14 @@ SEGMENTS {
     SRPREPTRL:   load = SRPREPTRL,                     type = ro;
 
     MAINHDR:     load = MAINHDR,                       type = ro;
-    STARTUP:     load = RAM,                           type = ro,  define = yes;
-    LOWCODE:     load = RAM,                           type = ro,  define = yes, optional = yes;
-    ONCE:        load = RAM,                           type = ro,                optional = yes;
-    CODE:        load = RAM,                           type = ro,  define = yes;
-    RODATA:      load = RAM,                           type = ro;
-    DATA:        load = RAM,                           type = rw;
-    INIT:        load = RAM,                           type = bss,               optional = yes;
-    BSS:         load = RAM,                           type = bss, define = yes;
+    STARTUP:     load = MAIN,                          type = ro,  define = yes;
+    LOWCODE:     load = MAIN,                          type = ro,  define = yes, optional = yes;
+    ONCE:        load = MAIN,                          type = ro,                optional = yes;
+    CODE:        load = MAIN,                          type = ro,  define = yes;
+    RODATA:      load = MAIN,                          type = ro;
+    DATA:        load = MAIN,                          type = rw;
+    INIT:        load = MAIN,                          type = bss,               optional = yes;
+    BSS:         load = MAIN,                          type = bss, define = yes;
     AUTOSTRT:    load = TRAILER,                       type = ro;
 
     OVERLAY1:    load = OVL1,                          type = ro,  define = yes, optional = yes;
index 2f9523c5901379a859845b9bae8c6bfab6d87d20..9573fc78cbdc8920aa40cbc3e7ff073ac5722b62 100644 (file)
@@ -3,48 +3,48 @@ FEATURES {
 }
 
 SYMBOLS {
-    __EXEHDR__:          type = import;
-    __SYSTEM_CHECK__:    type = import;  # force inclusion of "system check" load chunk
-    __AUTOSTART__:       type = import;  # force inclusion of autostart "trailer"
-    __STACKSIZE__:       type = weak, value = $0800; # 2k stack
-    __STARTADDRESS__:    type = export, value = %S;
+    __EXEHDR__:       type = import;
+    __SYSTEM_CHECK__: type = import;  # force inclusion of "system check" load chunk
+    __AUTOSTART__:    type = import;  # force inclusion of autostart "trailer"
+    __STACKSIZE__:    type = weak, value = $0800; # 2k stack
+    __STARTADDRESS__: type = export, value = %S;
 }
 
 MEMORY {
-    ZP:            file = "", define = yes, start = $0082,                  size = $007E;
+    ZP:          file = "", define = yes, start = $0082,                  size = $007E;
 
 # just $FFFF
-    HEADER:        file = %O,               start = $0000,                  size = $0002;
+    HEADER:      file = %O,               start = $0000,                  size = $0002;
 
 # "system check" load chunk
-    SYSCHKHDR:     file = %O,               start = $0000,                  size = $0004;
-    SYSCHKCHNK:    file = %O,               start = $2E00,                  size = $0300;
-    SYSCHKTRL:     file = %O,               start = $0000,                  size = $0006;
+    SYSCHKHDR:   file = %O,               start = $0000,                  size = $0004;
+    SYSCHKCHNK:  file = %O,               start = $2E00,                  size = $0300;
+    SYSCHKTRL:   file = %O,               start = $0000,                  size = $0006;
 
 # "shadow RAM preparation" load chunk
-    SRPREPHDR:     file = %O,               start = $0000,                  size = $0004;
-    SRPREPCHNK:    file = %O, define = yes, start = %S,                     size = $7C20 - %S - $07FF;  # $07FF: space for temp. chargen buffer, 1K aligned
-    SRPREPTRL:     file = %O,               start = $0000,                  size = $0006;
+    SRPREPHDR:   file = %O,               start = $0000,                  size = $0004;
+    SRPREPCHNK:  file = %O, define = yes, start = %S,                     size = $7C20 - %S - $07FF;  # $07FF: space for temp. chargen buffer, 1K aligned
+    SRPREPTRL:   file = %O,               start = $0000,                  size = $0006;
 
 # "main program" load chunk
-    MAINHDR:       file = %O,               start = $0000,                  size = $0004;
-    RAM:           file = %O, define = yes, start = %S +
-                                                    __LOWBSS_SIZE__,        size = $D000 -
-                                                                                   __STACKSIZE__ -
-                                                                                   %S -
-                                                                                   __LOWBSS_SIZE__;
+    MAINHDR:     file = %O,               start = $0000,                  size = $0004;
+    MAIN:        file = %O, define = yes, start = %S +
+                                                  __LOWBSS_SIZE__,        size = $D000 -
+                                                                                 __STACKSIZE__ -
+                                                                                 %S -
+                                                                                 __LOWBSS_SIZE__;
 
 # defines entry point into program
-    TRAILER:       file = %O,               start = $0000, size = $0006;
+    TRAILER:     file = %O,               start = $0000, size = $0006;
 
 # memory beneath the ROM preceeding the character generator
-    HIDDEN_RAM2:   file = "", define = yes, start = $D800, size = $0800;
+    HIDDEN_RAM2: file = "", define = yes, start = $D800, size = $0800;
 
 # address of relocated character generator (same addess as ROM version)
-    CHARGEN:       file = "", define = yes, start = $E000, size = $0400;
+    CHARGEN:     file = "", define = yes, start = $E000, size = $0400;
 
 # memory beneath the ROM
-    HIDDEN_RAM:    file = "", define = yes, start = $E400, size = $FFFA - $E400;
+    HIDDEN_RAM:  file = "", define = yes, start = $E400, size = $FFFA - $E400;
 }
 
 SEGMENTS {
@@ -65,14 +65,14 @@ SEGMENTS {
     SRPREPTRL:   load = SRPREPTRL,                     type = ro;
 
     MAINHDR:     load = MAINHDR,                       type = ro;
-    STARTUP:     load = RAM,                           type = ro,  define = yes;
-    LOWCODE:     load = RAM,                           type = ro,  define = yes, optional = yes;
-    ONCE:        load = RAM,                           type = ro,                optional = yes;
-    CODE:        load = RAM,                           type = ro,  define = yes;
-    RODATA:      load = RAM,                           type = ro;
-    DATA:        load = RAM,                           type = rw;
-    INIT:        load = RAM,                           type = bss,               optional = yes;
-    BSS:         load = RAM,                           type = bss, define = yes;
+    STARTUP:     load = MAIN,                          type = ro,  define = yes;
+    LOWCODE:     load = MAIN,                          type = ro,  define = yes, optional = yes;
+    ONCE:        load = MAIN,                          type = ro,                optional = yes;
+    CODE:        load = MAIN,                          type = ro,  define = yes;
+    RODATA:      load = MAIN,                          type = ro;
+    DATA:        load = MAIN,                          type = rw;
+    INIT:        load = MAIN,                          type = bss,               optional = yes;
+    BSS:         load = MAIN,                          type = bss, define = yes;
     AUTOSTRT:    load = TRAILER,                       type = ro;
 }
 FEATURES {
index a0f7e1c3dcfad16caabdcf8bf717fa6e37bcf4e7..e5a574f0a8824e375bd01403c5b51e46be633512 100644 (file)
@@ -11,21 +11,21 @@ MEMORY {
     ZP:      file = "", define = yes, start = $00E2, size = $001A;
     TAPEHDR: file = %O, type   = ro,  start = $0000, size = $001F;
     BASHEAD: file = %O, define = yes, start = $0501, size = $000D;
-    RAM:     file = %O, define = yes, start = __BASHEAD_LAST__, size = __RAMEND__ - __RAM_START__ - __STACKSIZE__;
+    MAIN:    file = %O, define = yes, start = __BASHEAD_LAST__, size = __RAMEND__ - __RAM_START__ - __STACKSIZE__;
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,      type = zp;
     TAPEHDR:  load = TAPEHDR, type = ro;
     BASHDR:   load = BASHEAD, type = ro,  define = yes, optional = yes;
-    STARTUP:  load = RAM,     type = ro;
-    LOWCODE:  load = RAM,     type = ro,                optional = yes;
-    CODE:     load = RAM,     type = ro;
-    RODATA:   load = RAM,     type = ro;
-    ONCE:     load = RAM,     type = ro,  define = yes, optional = yes;
-    DATA:     load = RAM,     type = rw;
-    ZPSAVE1:  load = RAM,     type = rw,  define = yes; # ZPSAVE1, ZPSAVE2 must be together
-    ZPSAVE2:  load = RAM,     type = bss;               # see "libsrc/atmos/crt0.s"
-    BSS:      load = RAM,     type = bss, define = yes;
+    STARTUP:  load = MAIN,    type = ro;
+    LOWCODE:  load = MAIN,    type = ro,                optional = yes;
+    CODE:     load = MAIN,    type = ro;
+    RODATA:   load = MAIN,    type = ro;
+    ONCE:     load = MAIN,    type = ro,  define = yes, optional = yes;
+    DATA:     load = MAIN,    type = rw;
+    ZPSAVE1:  load = MAIN,    type = rw,  define = yes; # ZPSAVE1, ZPSAVE2 must be together
+    ZPSAVE2:  load = MAIN,    type = bss;               # see "libsrc/atmos/crt0.s"
+    BSS:      load = MAIN,    type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 98779b6fdf5e8ffed97023362047ba3b2d5c31bc..c451951ad9921ff9b5fcdf37ffbf41abec889879 100644 (file)
@@ -2,18 +2,18 @@ SYMBOLS {
     __STACKSIZE__: type = weak, value = $0800; # 2k stack
 }
 MEMORY {
-    ZP:  file = "", define = yes, start = $0070, size = $0020;
-    RAM: file = %O,               start = $0E00, size = $7200 - __STACKSIZE__;
+    ZP:   file = "", define = yes, start = $0070, size = $0020;
+    MAIN: file = %O,               start = $0E00, size = $7200 - __STACKSIZE__;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,  type = zp;
-    STARTUP:  load = RAM, type = ro,  define = yes;
-    LOWCODE:  load = RAM, type = ro,                optional = yes;
-    ONCE:     load = RAM, type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM, type = ro;
-    RODATA:   load = RAM, type = ro;
-    DATA:     load = RAM, type = rw;
-    BSS:      load = RAM, type = bss, define = yes;
+    ZEROPAGE: load = ZP,   type = zp;
+    STARTUP:  load = MAIN, type = ro,  define = yes;
+    LOWCODE:  load = MAIN, type = ro,                optional = yes;
+    ONCE:     load = MAIN, type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN, type = ro;
+    RODATA:   load = MAIN, type = ro;
+    DATA:     load = MAIN, type = rw;
+    BSS:      load = MAIN, type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 771bd290bf706e700b974fbdf15e9cd2996aea17..8f60fa34719cd3ece9d289186ab5a8cf52c684bd 100644 (file)
@@ -9,7 +9,7 @@ MEMORY {
     ZP:       file = "", define = yes, start = $0002,                   size = $001A;
     LOADADDR: file = %O,               start = $1BFF,                   size = $0002;
     HEADER:   file = %O,               start = $1C01,                   size = $000C;
-    RAM:      file = %O, define = yes, start = $1C0D,                   size = $A3F3 - __OVERLAYSIZE__ - __STACKSIZE__;
+    MAIN:     file = %O, define = yes, start = $1C0D,                   size = $A3F3 - __OVERLAYSIZE__ - __STACKSIZE__;
     OVL1ADDR: file = "%O.1",           start = $BFFE - __OVERLAYSIZE__, size = $0002;
     OVL1:     file = "%O.1",           start = $C000 - __OVERLAYSIZE__, size = __OVERLAYSIZE__;
     OVL2ADDR: file = "%O.2",           start = $BFFE - __OVERLAYSIZE__, size = $0002;
@@ -33,14 +33,14 @@ SEGMENTS {
     ZEROPAGE: load = ZP,       type = zp;
     LOADADDR: load = LOADADDR, type = ro;
     EXEHDR:   load = HEADER,   type = ro;
-    STARTUP:  load = RAM,      type = ro;
-    LOWCODE:  load = RAM,      type = ro,                optional = yes;
-    ONCE:     load = RAM,      type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,      type = ro;
-    RODATA:   load = RAM,      type = ro;
-    DATA:     load = RAM,      type = rw;
-    INIT:     load = RAM,      type = bss;
-    BSS:      load = RAM,      type = bss, define = yes;
+    STARTUP:  load = MAIN,     type = ro;
+    LOWCODE:  load = MAIN,     type = ro,                optional = yes;
+    ONCE:     load = MAIN,     type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,     type = ro;
+    RODATA:   load = MAIN,     type = ro;
+    DATA:     load = MAIN,     type = rw;
+    INIT:     load = MAIN,     type = bss;
+    BSS:      load = MAIN,     type = bss, define = yes;
     OVL1ADDR: load = OVL1ADDR, type = ro;
     OVERLAY1: load = OVL1,     type = ro,  define = yes, optional = yes;
     OVL2ADDR: load = OVL2ADDR, type = ro;
index 0ea6066ad19cb234bce89e7fff004546f60a7689..6a98dc5cfe415b5dd4ae973c7c326611760af25c 100644 (file)
@@ -7,20 +7,20 @@ MEMORY {
     ZP:       file = "", define = yes, start = $0002, size = $001A;
     LOADADDR: file = %O,               start = $1BFF, size = $0002;
     HEADER:   file = %O,               start = $1C01, size = $000C;
-    RAM:      file = %O, define = yes, start = $1C0D, size = $A3F3 - __STACKSIZE__;
+    MAIN:     file = %O, define = yes, start = $1C0D, size = $A3F3 - __STACKSIZE__;
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,       type = zp;
     LOADADDR: load = LOADADDR, type = ro;
     EXEHDR:   load = HEADER,   type = ro;
-    STARTUP:  load = RAM,      type = ro;
-    LOWCODE:  load = RAM,      type = ro,                optional = yes;
-    ONCE:     load = RAM,      type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,      type = ro;
-    RODATA:   load = RAM,      type = ro;
-    DATA:     load = RAM,      type = rw;
-    INIT:     load = RAM,      type = bss;
-    BSS:      load = RAM,      type = bss, define = yes;
+    STARTUP:  load = MAIN,     type = ro;
+    LOWCODE:  load = MAIN,     type = ro,                optional = yes;
+    ONCE:     load = MAIN,     type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,     type = ro;
+    RODATA:   load = MAIN,     type = ro;
+    DATA:     load = MAIN,     type = rw;
+    INIT:     load = MAIN,     type = bss;
+    BSS:      load = MAIN,     type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index b4b5ccaf7c12b87f89d7ccc11fe7870b6294cb6a..f1ab747cd075f47c43369cdb3290caa762359ae9 100644 (file)
@@ -7,20 +7,20 @@ MEMORY {
     ZP:       file = "", define = yes, start = $0002, size = $001A;
     LOADADDR: file = %O,               start = $0FFF, size = $0002;
     HEADER:   file = %O,               start = $1001, size = $000C;
-    RAM:      file = %O,               start = $100D, size = $6FF3 - __STACKSIZE__;
+    MAIN:     file = %O,               start = $100D, size = $6FF3 - __STACKSIZE__;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,     type = zp;
+    ZEROPAGE: load = ZP,       type = zp;
     LOADADDR: load = LOADADDR, type = ro;
-    EXEHDR:   load = HEADER, type = ro;
-    STARTUP:  load = RAM,    type = ro;
-    LOWCODE:  load = RAM,    type = ro,                optional = yes;
-    ONCE:     load = RAM,    type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,    type = ro;
-    RODATA:   load = RAM,    type = ro;
-    DATA:     load = RAM,    type = rw;
-    INIT:     load = RAM,    type = bss;
-    BSS:      load = RAM,    type = bss, define = yes;
+    EXEHDR:   load = HEADER,   type = ro;
+    STARTUP:  load = MAIN,     type = ro;
+    LOWCODE:  load = MAIN,     type = ro,                optional = yes;
+    ONCE:     load = MAIN,     type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,     type = ro;
+    RODATA:   load = MAIN,     type = ro;
+    DATA:     load = MAIN,     type = rw;
+    INIT:     load = MAIN,     type = bss;
+    BSS:      load = MAIN,     type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 1ab80be8e097bda111f37c5daf8fc1d4110ff438..224bd704a008bd8551d8d1818818275e0860ce29 100644 (file)
@@ -7,14 +7,14 @@ SYMBOLS {
 MEMORY {
     ZP:       file = "", start = $0002,  size = $001A,      define = yes;
     LOADADDR: file = %O, start = %S - 2, size = $0002;
-    RAM:      file = %O, start = %S,     size = $D000 - %S;
+    MAIN:     file = %O, start = %S,     size = $D000 - %S;
 }
 SEGMENTS {
     LOADADDR: load = LOADADDR, type = ro;
-    EXEHDR:   load = RAM,      type = ro,  optional = yes;
-    CODE:     load = RAM,      type = rw,  optional = yes;
-    RODATA:   load = RAM,      type = ro,  optional = yes;
-    DATA:     load = RAM,      type = rw,  optional = yes;
-    BSS:      load = RAM,      type = bss, optional = yes;
+    EXEHDR:   load = MAIN,     type = ro,  optional = yes;
+    CODE:     load = MAIN,     type = rw,  optional = yes;
+    RODATA:   load = MAIN,     type = ro,  optional = yes;
+    DATA:     load = MAIN,     type = rw,  optional = yes;
+    BSS:      load = MAIN,     type = bss, optional = yes;
     ZEROPAGE: load = ZP,       type = zp,  optional = yes;
 }
index 8b01dff0b895471fe4cb2fa6699fd5680aba0acb..5f73174f3366a9700f71d2bd256204168a49de05 100644 (file)
@@ -8,24 +8,24 @@ MEMORY {
     STARTUP: file = %O,               start = $00FE, size = $0102, fill = yes;
     PAGE2:   file = %O,               start = $0200, size = $0100, fill = yes;
     PAGE3:   file = %O,               start = $0300, size = $0100, fill = yes;
-    RAM:     file = %O,               start = $0400, size = $DC00;
+    MAIN:    file = %O,               start = $0400, size = $DC00;
     CHARRAM: file = "", define = yes, start = $E000, size = $1000;
     VIDRAM:  file = "", define = yes, start = $F000, size = $0400;
 }
 SEGMENTS {
+    ZEROPAGE: load = ZP,      type = zp;
+    EXTZP:    load = ZP,      type = rw,  define = yes;
     EXEHDR:   load = HEADER,  type = rw;
     STARTUP:  load = STARTUP, type = rw;
     PAGE2:    load = PAGE2,   type = rw;
     PAGE3:    load = PAGE3,   type = rw;
-    LOWCODE:  load = RAM,     type = ro,                optional = yes;
-    ONCE:     load = RAM,     type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,     type = ro;
-    RODATA:   load = RAM,     type = ro;
-    DATA:     load = RAM,     type = rw;
-    INIT:     load = RAM,     type = bss;
-    BSS:      load = RAM,     type = bss, define = yes;
-    ZEROPAGE: load = ZP,      type = zp;
-    EXTZP:    load = ZP,      type = rw,  define = yes;
+    LOWCODE:  load = MAIN,    type = ro,                optional = yes;
+    ONCE:     load = MAIN,    type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,    type = ro;
+    RODATA:   load = MAIN,    type = ro;
+    DATA:     load = MAIN,    type = rw;
+    INIT:     load = MAIN,    type = bss;
+    BSS:      load = MAIN,    type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 6df9f1f5a6dbd541de64ebc77967f7f8b4f3bb2b..fb4349dbaf13a2df3ec22bd705f5d50e37489c07 100644 (file)
@@ -7,22 +7,22 @@ MEMORY {
     STARTUP: file = %O,               start = $00FE, size = $0102, fill = yes;
     PAGE2:   file = %O,               start = $0200, size = $0100, fill = yes;
     PAGE3:   file = %O,               start = $0300, size = $0100, fill = yes;
-    RAM:     file = %O,               start = $0400, size = $FECB - __STACKSIZE__;
+    MAIN:    file = %O,               start = $0400, size = $FECB - __STACKSIZE__;
 }
 SEGMENTS {
+    ZEROPAGE: load = ZP,      type = zp;
+    EXTZP:    load = ZP,      type = rw,  define = yes;
     EXEHDR:   load = HEADER,  type = rw;
     STARTUP:  load = STARTUP, type = rw;
     PAGE2:    load = PAGE2,   type = rw;
     PAGE3:    load = PAGE3,   type = rw;
-    LOWCODE:  load = RAM,     type = ro,                optional = yes;
-    ONCE:     load = RAM,     type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,     type = ro;
-    RODATA:   load = RAM,     type = ro;
-    DATA:     load = RAM,     type = rw;
-    INIT:     load = RAM,     type = bss;
-    BSS:      load = RAM,     type = bss, define = yes;
-    ZEROPAGE: load = ZP,      type = zp;
-    EXTZP:    load = ZP,      type = rw,  define = yes;
+    LOWCODE:  load = MAIN,    type = ro,                optional = yes;
+    ONCE:     load = MAIN,    type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,    type = ro;
+    RODATA:   load = MAIN,    type = ro;
+    DATA:     load = MAIN,    type = rw;
+    INIT:     load = MAIN,    type = bss;
+    BSS:      load = MAIN,    type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index f0f669f2778f066187e28350b91a0ca2d12aad3a..4e4253194c3d85d61bf27d0565f94232a53be651 100644 (file)
@@ -9,17 +9,17 @@ MEMORY {
     # 0000-03ff is RAM
     # FIXME: what zp range can we actually use?
     # $0a-$11 is used by IRQ/NMI, $e8 is used by NMI
-    ZP: start = $0012, size = $e8 - $12;
-    CPUSTACK: start = $0100, size =$100;
-    RAM: start = $0200, size = $200 - __STACKSIZE__, define = yes;
+    ZP:        start = $0012,        size = $00E8 - $0012;
+    CPUSTACK:  start = $0100,        size = $0100;
+    RAM:       start = $0200,        size = $0200 - __STACKSIZE__, define = yes;
 
-    CARTHEADER:   file = %O, define = yes, start = %S,               size = $0029;
+    CARTHEADER: file = %O, define = yes, start = %S, size = $0029;
     # 6000-e000 can be (Cartridge) ROM
     # WARNING: fill value must be $00 else it will no more work
-    #ROM: start = $6000, size = $1000, fill = yes, fillval = $00, file = %O, define = yes;
-    #ROMFILL: start = $7000, size = $7000, fill = yes, fillval = $00, file = %O, define = yes;
+    #ROM:     start = $6000,         size = $1000,         fill = yes, fillval = $00, file = %O, define = yes;
+    #ROMFILL: start = $7000,         size = $7000,         fill = yes, fillval = $00, file = %O, define = yes;
     # for images that have code >$6fff we must calculate the checksum!
-    ROM: start = $6000 + $29, size = $8000 - $29, fill = yes, fillval = $00, file = %O, define = yes;
+    ROM:      start = $6000 + $0029, size = $8000 - $0029, fill = yes, fillval = $00, file = %O, define = yes;
 }
 
 SEGMENTS {
index aabacbeb20f7c8ac76b2a7b02517ca98f3229cde..3a11cc5d4455656b175906bfd529c2b6923a8c55 100644 (file)
@@ -5,18 +5,18 @@ SYMBOLS {
     __STACKSIZE__: type = weak, value = $0400; # 1k stack (do typical LUnix apps. need 2k?)
 }
 MEMORY {
-    ZP:  start = $0080, size = $0040;
-    RAM: start = %S,    size = $7600 - __STACKSIZE__;
+    ZP:   start = $0080, size = $0040;
+    MAIN: start = %S,    size = $7600 - __STACKSIZE__;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,  type = zp,  define = yes;                 # Pseudo-registers
-    STARTUP:  load = RAM, type = ro;                                # First initialization code
-    LOWCODE:  load = RAM, type = ro,                optional = yes; # Legacy from other platforms
-    ONCE:     load = RAM, type = ro,  define = yes, optional = yes; # Library initialization code
-    CODE:     load = RAM, type = ro;                                # Program
-    RODATA:   load = RAM, type = ro;                                # Literals, constants
-    DATA:     load = RAM, type = rw;                                # Initialized variables
-    BSS:      load = RAM, type = bss, define = yes;                 # Uninitialized variables
+    ZEROPAGE: load = ZP,   type = zp,  define = yes;                 # Pseudo-registers
+    STARTUP:  load = MAIN, type = ro;                                # First initialization code
+    LOWCODE:  load = MAIN, type = ro,                optional = yes; # Legacy from other platforms
+    ONCE:     load = MAIN, type = ro,  define = yes, optional = yes; # Library initialization code
+    CODE:     load = MAIN, type = ro;                                # Program
+    RODATA:   load = MAIN, type = ro;                                # Literals, constants
+    DATA:     load = MAIN, type = rw;                                # Initialized variables
+    BSS:      load = MAIN, type = bss, define = yes;                 # Uninitialized variables
 }
 FEATURES {
     CONDES: type    = constructor,
index fcf6d4c60f0cd341e399e08aee8ab43daf506fac..a1687b423f90f30789c175a114169ab9abefc2f5 100644 (file)
@@ -7,20 +7,20 @@ SYMBOLS {
 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 {
     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 = RAM,    type = ro,  define = yes;
-    LOWCODE:  load = RAM,    type = ro,  define = yes, optional = yes;
-    ONCE:     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;
+    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,
index d40c18237f782094aa4a660cad49f11a4fefbdd0..9467c3c921f64a7ddd5588700b969e1a5ed4dded 100644 (file)
@@ -11,7 +11,7 @@ MEMORY {
     HEADER: file = %O,               start = $0000, size = $0040;
     BOOT:   file = %O,               start = $0200, size = __STARTOFDIRECTORY__;
     DIR:    file = %O,               start = $0000, size = 8;
-    RAM:    file = %O, define = yes, start = $0200, size = $9E58 - __STACKSIZE__;
+    MAIN:   file = %O, define = yes, start = $0200, size = $9E58 - __STACKSIZE__;
 }
 SEGMENTS {
     ZEROPAGE:  load = ZP,     type = zp;
@@ -20,13 +20,13 @@ SEGMENTS {
     EXEHDR:    load = HEADER, type = ro;
     BOOTLDR:   load = BOOT,   type = ro;
     DIRECTORY: load = DIR,    type = ro;
-    STARTUP:   load = RAM,    type = ro,  define = yes;
-    LOWCODE:   load = RAM,    type = ro,  define = yes, optional = yes;
-    ONCE:      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;
+    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,
index fe6d6133de67069dd88b72c50d6788d03a3a69c0..c32e3583f400b836183d8dccd138a449d6b866f3 100644 (file)
@@ -12,7 +12,7 @@ MEMORY {
     HEADER: file = %O,               start = $0000, size = $0040;
     BOOT:   file = %O,               start = $0200, size = __STARTOFDIRECTORY__;
     DIR:    file = %O,               start = $0000, size = 8;
-    RAM:    file = %O, define = yes, start = $0200, size = $BD38 - __STACKSIZE__;
+    MAIN:   file = %O, define = yes, start = $0200, size = $BD38 - __STACKSIZE__;
     UPLDR:  file = %O, define = yes, start = $BFDC, size = $005C;
 }
 SEGMENTS {
@@ -22,13 +22,13 @@ SEGMENTS {
     EXEHDR:   load = HEADER, type = ro;
     BOOTLDR:  load = BOOT,   type = ro;
     DIRECTORY:load = DIR,    type = ro;
-    STARTUP:  load = RAM,    type = ro,  define = yes;
-    LOWCODE:  load = RAM,    type = ro,  define = yes, optional = yes;
-    ONCE:     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;
+    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;
     UPCODE:   load = UPLDR,  type = ro,  define = yes;
     UPDATA:   load = UPLDR,  type = rw,  define = yes;
 }
index 4d41c1bbfc76eae1faba87e49720717bba2b2fc4..5140b342fe90a43360607f99a8cabf3d912dd486 100644 (file)
@@ -11,7 +11,7 @@ MEMORY {
     HEADER: file = %O,               start = $0000, size = $0040;
     BOOT:   file = %O,               start = $0200, size = __STARTOFDIRECTORY__;
     DIR:    file = %O,               start = $0000, size = 8;
-    RAM:    file = %O, define = yes, start = $0200, size = $BE38 - __STACKSIZE__;
+    MAIN:   file = %O, define = yes, start = $0200, size = $BE38 - __STACKSIZE__;
 }
 SEGMENTS {
     ZEROPAGE:  load = ZP,     type = zp;
@@ -20,13 +20,13 @@ SEGMENTS {
     EXEHDR:    load = HEADER, type = ro;
     BOOTLDR:   load = BOOT,   type = ro;
     DIRECTORY: load = DIR,    type = ro;
-    STARTUP:   load = RAM,    type = ro,  define = yes;
-    LOWCODE:   load = RAM,    type = ro,  define = yes, optional = yes;
-    ONCE:      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;
+    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,
index 54ae54eb4ccae0a3cfea9d02277bd7a156d3dbce..dcee604195ffc4d9d690780efa13787319774e37 100644 (file)
@@ -2,17 +2,17 @@ SYMBOLS {
     __STACKSIZE__: type = weak, value = $0800; # 2k stack
 }
 MEMORY {
-    ZP:  file = "", define = yes, start = $0000, size = $0001F;
-    RAM: file = %O,               start = %S,    size = $10000 - __STACKSIZE__;
+    ZP:   file = "", define = yes, start = $0000, size = $0001F;
+    MAIN: file = %O,               start = %S,    size = $10000 - __STACKSIZE__;
 }
 SEGMENTS {
-    ZEROPAGE: load = ZP,  type = zp;
-    LOWCODE:  load = RAM, type = ro,                optional = yes;
-    ONCE:     load = RAM, type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM, type = rw;
-    RODATA:   load = RAM, type = rw;
-    DATA:     load = RAM, type = rw;
-    BSS:      load = RAM, type = bss, define = yes;
+    ZEROPAGE: load = ZP,   type = zp;
+    LOWCODE:  load = MAIN, type = ro,                optional = yes;
+    ONCE:     load = MAIN, type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN, type = rw;
+    RODATA:   load = MAIN, type = rw;
+    DATA:     load = MAIN, type = rw;
+    BSS:      load = MAIN, type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index ac2e76dc9b54586cbfd79c2870118ed5f80b7cbc..3c1b1bda3ab089b45690c50f3a79d8de63f67ceb 100644 (file)
@@ -10,16 +10,16 @@ SYMBOLS {
 }
 MEMORY {
     # for size of ZP, see runtime/zeropage.s and c1p/extzp.s
-    ZP:       file = "", define = yes, start = $0002, size = $001A + $0006;
-    HEAD:     file = %O,               start = $0000, size = $00B6;
-    RAM:      file = %O, define = yes, start = %S, size = __HIMEM__ - __STACKSIZE__ - %S;
+    ZP:   file = "", define = yes, start = $0002, size = $001A + $0006;
+    HEAD: file = %O,               start = $0000, size = $00B6;
+    MAIN: file = %O, define = yes, start = %S, size = __HIMEM__ - __STACKSIZE__ - %S;
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,   type = zp;
     BOOT:     load = HEAD, type = ro,                optional = yes;
-    ONCE:     load = RAM,  type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,  type = rw;
-    RODATA:   load = RAM,  type = rw;
-    DATA:     load = RAM,  type = rw;
-    BSS:      load = RAM,  type = bss, define = yes;
+    ONCE:     load = MAIN, type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN, type = rw;
+    RODATA:   load = MAIN, type = rw;
+    DATA:     load = MAIN, type = rw;
+    BSS:      load = MAIN, type = bss, define = yes;
 }
index 314eac0b9cb900680b633c5baaaa43145cd0fb8e..3507ebebad26619752831ca9da9448fc37214808 100644 (file)
@@ -10,21 +10,21 @@ SYMBOLS {
 }
 MEMORY {
     # for size of ZP, see runtime/zeropage.s and c1p/extzp.s
-    ZP:       file = "", define = yes, start = $0002, size = $001A + $0020;
-    HEAD:     file = %O,               start = $0000, size = $00B6;
-    RAM:      file = %O, define = yes, start = %S, size = __HIMEM__ - __STACKSIZE__ - %S;
+    ZP:   file = "", define = yes, start = $0002, size = $001A + $0020;
+    HEAD: file = %O,               start = $0000, size = $00B6;
+    MAIN: file = %O, define = yes, start = %S, size = __HIMEM__ - __STACKSIZE__ - %S;
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,   type = zp;
     EXTZP:    load = ZP,   type = zp,  define = yes, optional = yes;
     BOOT:     load = HEAD, type = ro,                optional = yes;
-    STARTUP:  load = RAM,  type = ro;
-    LOWCODE:  load = RAM,  type = ro,                optional = yes;
-    ONCE:     load = RAM,  type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,  type = rw;
-    RODATA:   load = RAM,  type = rw;
-    DATA:     load = RAM,  type = rw;
-    BSS:      load = RAM,  type = bss, define = yes;
+    STARTUP:  load = MAIN, type = ro;
+    LOWCODE:  load = MAIN, type = ro,                optional = yes;
+    ONCE:     load = MAIN, type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN, type = rw;
+    RODATA:   load = MAIN, type = rw;
+    DATA:     load = MAIN, type = rw;
+    BSS:      load = MAIN, type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 16e9d12c89562fefd15173eb389ecf91fb7d6741..4f73e40c23956765b4365f118d7be932edf4da26 100644 (file)
@@ -7,20 +7,20 @@ MEMORY {
     ZP:       file = "", define = yes, start = $0002, size = $001A;
     LOADADDR: file = %O,               start = $0FFF, size = $0002;
     HEADER:   file = %O,               start = $1001, size = $000C;
-    RAM:      file = %O, define = yes, start = $100D, size = $ECF3 - __STACKSIZE__;
+    MAIN:     file = %O, define = yes, start = $100D, size = $ECF3 - __STACKSIZE__;
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,       type = zp;
     LOADADDR: load = LOADADDR, type = ro;
     EXEHDR:   load = HEADER,   type = ro;
-    STARTUP:  load = RAM,      type = ro;
-    LOWCODE:  load = RAM,      type = ro,                optional = yes;
-    ONCE:     load = RAM,      type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,      type = ro;
-    RODATA:   load = RAM,      type = ro;
-    DATA:     load = RAM,      type = rw;
-    INIT:     load = RAM,      type = bss;
-    BSS:      load = RAM,      type = bss, define = yes;
+    STARTUP:  load = MAIN,     type = ro;
+    LOWCODE:  load = MAIN,     type = ro,                optional = yes;
+    ONCE:     load = MAIN,     type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,     type = ro;
+    RODATA:   load = MAIN,     type = ro;
+    DATA:     load = MAIN,     type = rw;
+    INIT:     load = MAIN,     type = bss;
+    BSS:      load = MAIN,     type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 8e78fceb22944edd1f3a9a9be21fc28771d7b5ec..b50703bab2c5330f10ad8105367cae0bbeaf4d38 100644 (file)
@@ -5,18 +5,18 @@ SYMBOLS {
 MEMORY {
     ZP:     file = "",               start = $0000, size = $001A;
     HEADER: file = %O,               start = $0000, size = $0001;
-    RAM:    file = %O, define = yes, start = $0200, size = $FDF0 - __STACKSIZE__;
+    MAIN:   file = %O, define = yes, start = $0200, size = $FDF0 - __STACKSIZE__;
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,     type = zp;
     EXEHDR:   load = HEADER, type = ro;
-    STARTUP:  load = RAM,    type = ro;
-    LOWCODE:  load = RAM,    type = ro,                optional = yes;
-    ONCE:     load = RAM,    type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,    type = ro;
-    RODATA:   load = RAM,    type = ro;
-    DATA:     load = RAM,    type = rw;
-    BSS:      load = RAM,    type = bss, define = yes;
+    STARTUP:  load = MAIN,   type = ro;
+    LOWCODE:  load = MAIN,   type = ro,                optional = yes;
+    ONCE:     load = MAIN,   type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,   type = ro;
+    RODATA:   load = MAIN,   type = ro;
+    DATA:     load = MAIN,   type = rw;
+    BSS:      load = MAIN,   type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 8e78fceb22944edd1f3a9a9be21fc28771d7b5ec..b50703bab2c5330f10ad8105367cae0bbeaf4d38 100644 (file)
@@ -5,18 +5,18 @@ SYMBOLS {
 MEMORY {
     ZP:     file = "",               start = $0000, size = $001A;
     HEADER: file = %O,               start = $0000, size = $0001;
-    RAM:    file = %O, define = yes, start = $0200, size = $FDF0 - __STACKSIZE__;
+    MAIN:   file = %O, define = yes, start = $0200, size = $FDF0 - __STACKSIZE__;
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,     type = zp;
     EXEHDR:   load = HEADER, type = ro;
-    STARTUP:  load = RAM,    type = ro;
-    LOWCODE:  load = RAM,    type = ro,                optional = yes;
-    ONCE:     load = RAM,    type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,    type = ro;
-    RODATA:   load = RAM,    type = ro;
-    DATA:     load = RAM,    type = rw;
-    BSS:      load = RAM,    type = bss, define = yes;
+    STARTUP:  load = MAIN,   type = ro;
+    LOWCODE:  load = MAIN,   type = ro,                optional = yes;
+    ONCE:     load = MAIN,   type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,   type = ro;
+    RODATA:   load = MAIN,   type = ro;
+    DATA:     load = MAIN,   type = rw;
+    BSS:      load = MAIN,   type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index a1b609106fd10142d4b4df2db098dc4e6d9efaec..4f422582574a915b3cbb5f32e1e41a9c5b3a4d50 100644 (file)
@@ -9,20 +9,20 @@ MEMORY {
     ZP:       file = "", define = yes, start = $0002, size = $001A;
     LOADADDR: file = %O,               start = $11FF, size = $0002;
     HEADER:   file = %O,               start = $1201, size = $000C;
-    RAM:      file = %O, define = yes, start = $120D, size = $6DF3 - __STACKSIZE__;
+    MAIN:     file = %O, define = yes, start = $120D, size = $6DF3 - __STACKSIZE__;
 }
 SEGMENTS {
+    ZEROPAGE: load = ZP,       type = zp;
     LOADADDR: load = LOADADDR, type = ro;
     EXEHDR:   load = HEADER,   type = ro;
-    STARTUP:  load = RAM,      type = ro;
-    LOWCODE:  load = RAM,      type = ro,                optional = yes;
-    ONCE:     load = RAM,      type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,      type = ro;
-    RODATA:   load = RAM,      type = ro;
-    DATA:     load = RAM,      type = rw;
-    INIT:     load = RAM,      type = bss;
-    BSS:      load = RAM,      type = bss, define = yes;
-    ZEROPAGE: load = ZP,       type = zp;
+    STARTUP:  load = MAIN,     type = ro;
+    LOWCODE:  load = MAIN,     type = ro,                optional = yes;
+    ONCE:     load = MAIN,     type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,     type = ro;
+    RODATA:   load = MAIN,     type = ro;
+    DATA:     load = MAIN,     type = rw;
+    INIT:     load = MAIN,     type = bss;
+    BSS:      load = MAIN,     type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index 693b356a3bb07ad64245298e549ba63a6b04fdc3..4eba7bfa9b9d5336b85a119bf222f2e6c0a63a76 100644 (file)
@@ -7,20 +7,20 @@ MEMORY {
     ZP:       file = "", define = yes, start = $0002, size = $001A;
     LOADADDR: file = %O,               start = $0FFF, size = $0002;
     HEADER:   file = %O,               start = $1001, size = $000C;
-    RAM:      file = %O, define = yes, start = $100D, size = $0DF3 - __STACKSIZE__;
+    MAIN:     file = %O, define = yes, start = $100D, size = $0DF3 - __STACKSIZE__;
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,       type = zp;
     LOADADDR: load = LOADADDR, type = ro;
     EXEHDR:   load = HEADER,   type = ro;
-    STARTUP:  load = RAM,      type = ro;
-    LOWCODE:  load = RAM,      type = ro,                optional = yes;
-    ONCE:     load = RAM,      type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,      type = ro;
-    RODATA:   load = RAM,      type = ro;
-    DATA:     load = RAM,      type = rw;
-    INIT:     load = RAM,      type = bss;
-    BSS:      load = RAM,      type = bss, define = yes;
+    STARTUP:  load = MAIN,     type = ro;
+    LOWCODE:  load = MAIN,     type = ro,                optional = yes;
+    ONCE:     load = MAIN,     type = ro,  define = yes, optional = yes;
+    CODE:     load = MAIN,     type = ro;
+    RODATA:   load = MAIN,     type = ro;
+    DATA:     load = MAIN,     type = rw;
+    INIT:     load = MAIN,     type = bss;
+    BSS:      load = MAIN,     type = bss, define = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
index f37b43929a6fca199c2579f99b32185b5a553007..2087a854102d1f56bb918e38c0244c6c3e711188 100644 (file)
@@ -148,7 +148,7 @@ Special locations:
   (&dollar;58).
 
   <tag/Stack/
-  The C runtime stack is located at end of the RAM memory area (&dollar;CFFF)
+  The C runtime stack is located at end of the MAIN memory area (&dollar;CFFF)
   and grows downwards.
 
   <tag/Heap/
@@ -561,7 +561,7 @@ The contents of this chunk come from the SYSCHKCHNK memory area of the linker co
 <item>main program&nl;
 This load chunk is loaded at the selected program start address (default &dollar;2000) and
 contains all of the code and data of the program.&nl;
-The contents of this chunk come from the RAM memory area of the linker config file.
+The contents of this chunk come from the MAIN memory area of the linker config file.
 </enum>
 
 
index 0ea6e390f0f750fbf47032d77fe58aaa55dd1f68..317fe56978c9dce213aa3aa8a88701f4bb548d2a 100644 (file)
@@ -14,7 +14,7 @@
         .import         initlib, donelib
         .import         callmain, zerobss
         .import         __RESERVED_MEMORY__
-        .import         __RAM_START__, __RAM_SIZE__
+        .import         __MAIN_START__, __MAIN_SIZE__
 .ifdef __ATARIXL__
         .import         __STACKSIZE__
         .import         sram_init
@@ -55,10 +55,10 @@ start:
 
 .ifdef __ATARIXL__
 
-        lda     #<(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
+        lda     #<(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
+        ldx     #>(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
         sta     sp
-        lda     #>(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
-        sta     sp+1
+        stx     sp+1
 
 .else
 
index ea9fa95d7cc775b22f45577ca788a233a5c136d3..7abb7c1ac569ff712ac1695a779ee5a0860f2b02 100644 (file)
@@ -1,11 +1,11 @@
 ; This file defines the EXE header and main chunk load header for Atari executables
 
         .export         __EXEHDR__: absolute = 1
-        .import         __RAM_START__, __BSS_LOAD__
+        .import         __MAIN_START__, __BSS_LOAD__
 
 .segment        "EXEHDR"
         .word   $FFFF
 
 .segment        "MAINHDR"
-        .word   __RAM_START__
+        .word   __MAIN_START__
         .word   __BSS_LOAD__ - 1
index e789b28c279f533b4863ff801689eab1b1a7e5d0..6ad7a3ff3cb580407a9b622ea16d6fc4403f8ee4 100644 (file)
@@ -9,7 +9,7 @@
         .export         __STARTUP__ : absolute = 1      ; Mark as startup
         .import         initlib, donelib
         .import         callmain, zerobss
-        .import         __RAM_START__, __RAM_SIZE__, __STACKSIZE__
+        .import         __MAIN_START__, __MAIN_SIZE__, __STACKSIZE__
 
         .include        "zeropage.inc"
         .include        "atmos.inc"
@@ -44,10 +44,10 @@ L1:     lda     sp,x
         tsx
         stx     spsave          ; Save system stk ptr
 
-        lda     #<(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
+        lda     #<(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
+        ldx     #>(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
         sta     sp
-        lda     #>(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
-        sta     sp+1            ; Set argument stack ptr
+        stx     sp+1            ; Set argument stack ptr
 
 ; Call the module constructors.
 
index 5891bacf391b61d5df2a247da976cc6976c9d5f1..ba6a78ac57aaa09634e344c016bec312594bb674 100644 (file)
@@ -8,7 +8,7 @@
         .import         zerobss
         .import         push0, callmain
         .import         RESTOR, BSOUT, CLRCH
-        .import         __RAM_START__, __RAM_SIZE__, __STACKSIZE__
+        .import         __MAIN_START__, __MAIN_SIZE__, __STACKSIZE__
         .importzp       ST
 
         .include        "zeropage.inc"
@@ -56,10 +56,10 @@ L1:     lda     sp,x
         tsx
         stx     spsave          ; Save the system stack pointer
 
-        lda     #<(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
+        lda     #<(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
+        ldx     #>(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
         sta     sp
-        lda     #>(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
-        sta     sp+1            ; Set argument stack ptr
+        stx     sp+1            ; Set argument stack ptr
 
 ; Call the module constructors.
 
index ead45b7ea1b90bff858e8384fe87db6978e4867d..99af9b2d950bf5b36830def64957a808669e9ba2 100644 (file)
@@ -33,16 +33,16 @@ Start:
 
         ; setup the stack
         lda     #<(__RAM_START__+__RAM_SIZE__)
+        ldx     #>(__RAM_START__+__RAM_SIZE__)
         sta     sp
-        lda     #>(__RAM_START__+__RAM_SIZE__)
-        sta     sp + 1
+        stx     sp + 1
 
         ; Call module constructors
         jsr     initlib
 
         lda     #1
         sta     ZP_IRQ_CTRL     ; enable calling cartridge IRQ/NMI handler
-        cli     ; allow IRQ only after constructors have run
+        cli                     ; allow IRQ only after constructors have run
 
         ; Pass an empty command line
         jsr     push0           ; argc
index 60fc87725a30f90cebb459fe2249807b5588cbca..07ed06ffb1919103cbe096b102b373c120767bad 100644 (file)
@@ -4,7 +4,7 @@
 ; This header is required for BLL builds.
 ;
         .import         __BSS_LOAD__
-        .import         __RAM_START__
+        .import         __MAIN_START__
         .export         __BLLHDR__: absolute = 1
  
 ; ------------------------------------------------------------------------
@@ -12,8 +12,7 @@
 
         .segment "BLLHDR"
         .word   $0880
-        .dbyt   __RAM_START__
-        .dbyt   __BSS_LOAD__ - __RAM_START__ + 10
+        .dbyt   __MAIN_START__
+        .dbyt   __BSS_LOAD__ - __MAIN_START__ + 10
         .byte   $42,$53
         .byte   $39,$33
-
index 725f74ebd68cb39b7741fc6869decd77e272699a..c924f742f74231281957ede7099f8d16e9f7c3a8 100644 (file)
@@ -22,7 +22,7 @@
         .import         zerobss
         .import         callmain
         .import         _main
-        .import         __RAM_START__, __RAM_SIZE__, __STACKSIZE__
+        .import         __MAIN_START__, __MAIN_SIZE__, __STACKSIZE__
 
         .include        "zeropage.inc"
         .include        "extzp.inc"
@@ -79,10 +79,10 @@ MikeyInitData:  .byte $9e,$18,$68,$1f,$00,$00,$00,$00,$00,$ff,$1a,$1b,$04,$0d,$2
 
 ; Set up the stack.
 
-        lda     #<(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
+        lda     #<(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
+        ldx     #>(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
         sta     sp
-        lda     #>(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
-        sta     sp+1
+        stx     sp+1
 
 ; Init Mickey.
 
index a368482270037b90e78fc81df9687957d86e3402..2930edf4beab17260cfce842d397694d73574a94 100644 (file)
@@ -5,7 +5,7 @@
 ;
         .include "lynx.inc"
         .import         __STARTOFDIRECTORY__
-        .import         __RAM_START__
+        .import         __MAIN_START__
         .import         __CODE_SIZE__, __DATA_SIZE__, __RODATA_SIZE__
         .import         __STARTUP_SIZE__, __ONCE_SIZE__, __LOWCODE_SIZE__
         .import         __BLOCKSIZE__
@@ -25,6 +25,6 @@ len0 = __STARTUP_SIZE__ + __ONCE_SIZE__ + __CODE_SIZE__ + __DATA_SIZE__ + __RODA
         .byte   <block0
         .word   off0 & (__BLOCKSIZE__ - 1)
         .byte   $88
-        .word   __RAM_START__
+        .word   __MAIN_START__
         .word   len0
 __DIRECTORY_END__:
index 2a501b980ca5967e097f30ffae5ad5fa05384c02..ed2ade2223bc509a30bc597676aa09b70d76e309 100644 (file)
@@ -6,16 +6,16 @@
 ; add "-u __BOOT__" to the cl65/ld65 command line.  Then, the linker
 ; will import this symbol name; and, link this module at the front
 ; of your program file.
-;
-        .export         __BOOT__:abs = 1
 
-        .import         __RAM_START__, __RAM_SIZE__, __BSS_RUN__
+        .export         __BOOT__ : abs = 1
+
+        .import         __MAIN_START__, __MAIN_SIZE__, __BSS_RUN__
 
 ; ------------------------------------------------------------------------
 
-load_addr       :=      __RAM_START__
-load_size       =       __BSS_RUN__ - __RAM_START__
-ram_top         :=      __RAM_START__ + __RAM_SIZE__
+load_addr       :=      __MAIN_START__
+load_size       =       __BSS_RUN__ - __MAIN_START__
+ram_top         :=      __MAIN_START__ + __MAIN_SIZE__
 
         .segment        "BOOT"
 
index 62342c206e479d619bce354f381e6c1cead7df84..56abb7cdb675a0e83d2059adcaebd443c900c1ee 100644 (file)
@@ -8,7 +8,7 @@
 .import   _main
 
 .export   __STARTUP__ : absolute = 1    ; Mark as startup
-.import   __RAM_START__, __RAM_SIZE__   ; Linker generated
+.import   __MAIN_START__, __MAIN_SIZE__ ; Linker generated
 .import   __STACKSIZE__
 
 .import    zerobss, initlib, donelib
@@ -32,10 +32,10 @@ _init:    ldx     #$FF          ; Initialize stack pointer to $01FF
 ; ---------------------------------------------------------------------------
 ; Set cc65 argument stack pointer
 
-          lda     #<(__RAM_START__ + __RAM_SIZE__  + __STACKSIZE__)
+          lda     #<(__MAIN_START__ + __MAIN_SIZE__  + __STACKSIZE__)
+          ldx     #>(__MAIN_START__ + __MAIN_SIZE__  + __STACKSIZE__)
           sta     sp
-          lda     #>(__RAM_START__ + __RAM_SIZE__  + __STACKSIZE__)
-          sta     sp+1
+          stx     sp+1
 
 ; ---------------------------------------------------------------------------
 ; Initialize memory storage
index 9696d50f4acc0aa455dc9e03599a7474b2c07ce1..2262b4c4245a26e446bc92533e06fa73fe1c7d6b 100644 (file)
@@ -9,7 +9,7 @@
         .import         callirq_y, initlib, donelib
         .import         callmain, zerobss
         .import         __INTERRUPTOR_COUNT__
-        .import         __RAM_START__, __RAM_SIZE__     ; Linker generated
+        .import         __MAIN_START__, __MAIN_SIZE__   ; Linker generated
         .import         __STACKSIZE__                   ; Linker generated
         .importzp       ST
 
@@ -50,12 +50,12 @@ L1:     lda     sp,x
 ; of the usable RAM.
 
         tsx
-        stx     spsave          ; save system stk ptr
+        stx     spsave          ; Save system stk ptr
 
-        lda     #<(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
+        lda     #<(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
+        ldx     #>(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
         sta     sp
-        lda     #>(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
-        sta     sp+1
+        stx     sp+1
 
 ; Set up the IRQ vector in the banked RAM; and, switch off the ROM.
 
index d1831ad8192da4c40c38be4e85d06af6a104e218..bd02f0e42102e075b723af48d9aa01ec715cf57f 100644 (file)
@@ -9,7 +9,7 @@
         .import         zerobss, callmain
         .import         initlib, donelib
         .import         exit
-        .import         __RAM_START__, __RAM_SIZE__     ; Linker generated
+        .import         __MAIN_START__, __MAIN_SIZE__   ; Linker generated
         .import         __STACKSIZE__                   ; Linker generated
 
         .include        "zeropage.inc"
@@ -19,8 +19,8 @@
         cld
         ldx     #$FF
         txs
-        lda     #<(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
-        ldx     #>(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
+        lda     #<(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
+        ldx     #>(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
         sta     sp
         stx     sp+1
         jsr     zerobss
index 7239711686ba0cdd8e05fe87a437b203ef3084f0..68ab3ed122f973018bb8431fc1b4dc4965c4b784 100644 (file)
@@ -8,7 +8,7 @@
         .import         zerobss, push0
         .import         callmain
         .import         RESTOR, BSOUT, CLRCH
-        .import         __RAM_START__, __RAM_SIZE__     ; Linker generated
+        .import         __MAIN_START__, __MAIN_SIZE__   ; Linker generated
         .import         __STACKSIZE__                   ; Linker generated
         .importzp       ST
 
@@ -44,10 +44,10 @@ L1:     lda     sp,x
         tsx
         stx     spsave          ; Save the system stack ptr
 
-        lda     #<(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
+        lda     #<(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
+        ldx     #>(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
         sta     sp
-        lda     #>(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
-        sta     sp+1            ; Set argument stack ptr
+        stx     sp+1            ; Set argument stack ptr
 
 ; Call the module constructors.