]> git.sur5r.net Git - cc65/commitdiff
Adjust sizes, define the video RAM
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 14 Sep 2001 16:48:41 +0000 (16:48 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 14 Sep 2001 16:48:41 +0000 (16:48 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@922 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/cfg/cbm510.cfg

index 586412d535c550b6e94a7fb2368613d1ed5f7f68..4995027760fa54073a07e5ecca94f5899ec055f8 100644 (file)
@@ -1,6 +1,7 @@
 MEMORY {
     ZP: start = $02, size = $1A, type = rw;
-    RAM: start = $0001, size = $FFF0, file = %O;
+    RAM: start = $0001, size = $F3FF, file = %O;
+    VIDRAM: start = $F400, size = $0400, define = yes, file = "";
 }
 SEGMENTS {
     CODE: load = RAM, type = wprot;
@@ -20,5 +21,5 @@ FEATURES {
            count = __DESTRUCTOR_COUNT__;
 }
 SYMBOLS {
-    __STACKSIZE__ = $800;      # 2K stack
+    __STACKSIZE__ = $781;              # ~2K stack
 }