]> git.sur5r.net Git - cc65/commitdiff
Force inclusion of the load address.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 13 Nov 2010 16:57:42 +0000 (16:57 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 13 Nov 2010 16:57:42 +0000 (16:57 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4857 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/cfg/c64.cfg

index 3eabf2e3dc475123f8098c657cb1df7f91b85a0f..1ccf4d10b129f93a2007c8359e618cb14ebaf6bd 100644 (file)
@@ -1,22 +1,25 @@
-SYMBOLS {
-    __STACKSIZE__: type = weak, value = $0800; # 2k stack
+SYMBOLS {                                                          
+    __LOADADDR__:  type = import;
+    __STACKSIZE__: type = weak,   value = $0800; # 2k stack
 }
 MEMORY {
-    ZP:     file = "", define = yes, start = $0002, size = $001A;
-    HEADER: file = %O,               start = $07FF, size = $000E;
-    RAM:    file = %O, define = yes, start = $080D, size = $C7F3 - __STACKSIZE__;
+    ZP:       file = "", define = yes, start = $0002, size = $001A;
+    LOADADDR: file = %O,               start = $07FF, size = $0002;
+    HEADER:   file = %O,               start = $07FF, size = $000E;
+    RAM:      file = %O, define = yes, start = $080D, size = $C7F3 - __STACKSIZE__;
 }
 SEGMENTS {
-    EXEHDR:   load = HEADER, type = ro;
-    STARTUP:  load = RAM,    type = ro;
-    LOWCODE:  load = RAM,    type = ro,                optional = yes;
-    INIT:     load = RAM,    type = ro,  define = yes, optional = yes;
-    CODE:     load = RAM,    type = ro;
-    RODATA:   load = RAM,    type = ro;
-    DATA:     load = RAM,    type = rw;
-    ZPSAVE:   load = RAM,    type = bss;
-    BSS:      load = RAM,    type = bss, define = yes;
-    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;
+    INIT:     load = RAM,      type = ro,  define = yes, optional = yes;
+    CODE:     load = RAM,      type = ro;
+    RODATA:   load = RAM,      type = ro;
+    DATA:     load = RAM,      type = rw;
+    ZPSAVE:   load = RAM,      type = bss;
+    BSS:      load = RAM,      type = bss, define = yes;
+    ZEROPAGE: load = ZP,       type = zp;
 }
 FEATURES {
     CONDES: segment = INIT,