]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 2 Jun 2004 21:20:18 +0000 (21:20 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 2 Jun 2004 21:20:18 +0000 (21:20 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3067 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/config.c

index cf519e0468d9468e7ca352658f0bb3516e3db6b3..6ee1b6ad8f509134ca8918dcc684c01b9ff03fc8 100644 (file)
@@ -1472,7 +1472,7 @@ void CfgAssignSegments (void)
            }
 
                    /* If this is the run area, set the start address of this segment,
-             * set the readonly flag in the segment and and remember if the 
+             * set the readonly flag in the segment and and remember if the
              * segment is in a relocatable file or not.
              */
            if (S->Run == M) {
@@ -1539,7 +1539,7 @@ void CfgAssignSegments (void)
            sprintf (Buf, "__%s_SIZE__", GetString (M->Name));
            CreateConstExport (GetStringId (Buf), M->Size);
            sprintf (Buf, "__%s_LAST__", GetString (M->Name));
-           CreateConstExport (GetStringId (Buf), M->FillLevel);
+           CreateMemoryExport (GetStringId (Buf), M, M->FillLevel);
        }
 
        /* Next memory area */