]> git.sur5r.net Git - cc65/commitdiff
set RAM start address to %S; add STARTADDRESS
authorcpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 24 Jul 2005 20:57:00 +0000 (20:57 +0000)
committercpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 24 Jul 2005 20:57:00 +0000 (20:57 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3545 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/cfg/atari.cfg

index 5a03848a31c379a22ab5b5fc440b51598e51257d..b73a9459eec262528790f1f56dc66630d7ee2638 100644 (file)
@@ -1,7 +1,11 @@
+FEATURES {
+    STARTADDRESS: default = $2E00;
+}
 MEMORY {
     ZP:     start = $0082, size = $007E, type = rw, define = yes;
     HEADER: start = $0000, size = $0006, file = %O;
-    RAM:    start = $2E00, size = $8E20, file = %O;    # $8E20: matches upper bound $BC1F
+    RAM:    start = %S,    size = $8E20, file = %O;    # $8E20: matches upper bound $BC1F for 
+                                                       # the default start address of $2E00
 }
 SEGMENTS {
     EXEHDR:   load = HEADER, type = ro;