In case of memory area overflows, generate a short mapfile if one was

requested. This eases the task of rearranging segments when such an
overflow occurs.


git-svn-id: svn://svn.cc65.org/cc65/trunk@3373 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-01-23 11:19:26 +00:00
parent 3c20c4c3e1
commit e8abdea87c
5 changed files with 86 additions and 32 deletions

View File

@@ -6,7 +6,7 @@
/* */
/* */
/* */
/* (C) 1998-2003 Ullrich von Bassewitz */
/* (C) 1998-2005 Ullrich von Bassewitz */
/* R<>merstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
@@ -39,13 +39,29 @@
/*****************************************************************************/
/* Code */
/* Data */
/*****************************************************************************/
void CreateMapFile (void);
/* Create a map file */
/* Constants that may be used as arguments for CreateMapFile */
enum {
LONG_MAPFILE,
SHORT_MAPFILE
};
/*****************************************************************************/
/* Code */
/*****************************************************************************/
void CreateMapFile (int ShortMap);
/* Create a map file. If ShortMap is true, only the segment lists are
* generated, not the import/export lists.
*/
void CreateLabelFile (void);
/* Create a label file */