]> git.sur5r.net Git - cc65/commitdiff
Replaced "throwing away" of memeory area HEADER with the much more elegant "not refer...
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 16 Jun 2012 21:06:13 +0000 (21:06 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 16 Jun 2012 21:06:13 +0000 (21:06 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5724 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/cfg/apple2-system.cfg
src/ld65/cfg/apple2enh-system.cfg

index 7f153897fa2b064d88fc4c08c4bb0309ecbf25c4..9f4194800f50858fcedea897caf717b8aaa6a563 100644 (file)
@@ -1,7 +1,6 @@
 # Configuration for ProDOS 8 system programs (without the header)
 
 SYMBOLS {
-    __EXEHDR__:    type = import;
     __LCADDR__:    type = weak, value = $D400; # Behind quit code
     __LCSIZE__:    type = weak, value = $0C00; # Rest of bank two
     __STACKSIZE__: type = weak, value = $0800; # 2k stack
@@ -11,14 +10,12 @@ SYMBOLS {
 }
 MEMORY {
     ZP:     file = "", define = yes, start = $0080,      size = $001A;
-    HEADER: file = "",               start = $0000,      size = $0004;
     RAM:    file = %O, define = yes, 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;
-    EXEHDR:   load = HEADER,          type = ro;
     STARTUP:  load = RAM,             type = ro;
     LOWCODE:  load = RAM,             type = ro;
     CODE:     load = RAM,             type = ro;
index 7f153897fa2b064d88fc4c08c4bb0309ecbf25c4..9f4194800f50858fcedea897caf717b8aaa6a563 100644 (file)
@@ -1,7 +1,6 @@
 # Configuration for ProDOS 8 system programs (without the header)
 
 SYMBOLS {
-    __EXEHDR__:    type = import;
     __LCADDR__:    type = weak, value = $D400; # Behind quit code
     __LCSIZE__:    type = weak, value = $0C00; # Rest of bank two
     __STACKSIZE__: type = weak, value = $0800; # 2k stack
@@ -11,14 +10,12 @@ SYMBOLS {
 }
 MEMORY {
     ZP:     file = "", define = yes, start = $0080,      size = $001A;
-    HEADER: file = "",               start = $0000,      size = $0004;
     RAM:    file = %O, define = yes, 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;
-    EXEHDR:   load = HEADER,          type = ro;
     STARTUP:  load = RAM,             type = ro;
     LOWCODE:  load = RAM,             type = ro;
     CODE:     load = RAM,             type = ro;