X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fld65%2Fmapfile.h;h=f1016aca73277a46db9ae2c6c2b341d75ad7a54f;hb=0807da74bd7c3ebe3e6e75129a07a810b17174b2;hp=91a50f28dd121eef0802fa83211db3aec034a377;hpb=3889a2bec9d99d2a17f56b690f0c409d2bc0c216;p=cc65 diff --git a/src/ld65/mapfile.h b/src/ld65/mapfile.h index 91a50f28d..f1016aca7 100644 --- a/src/ld65/mapfile.h +++ b/src/ld65/mapfile.h @@ -6,9 +6,9 @@ /* */ /* */ /* */ -/* (C) 1998-2001 Ullrich von Bassewitz */ -/* Wacholderweg 14 */ -/* D-70597 Stuttgart */ +/* (C) 1998-2005 Ullrich von Bassewitz */ +/* Römerstrasse 52 */ +/* D-70794 Filderstadt */ /* EMail: uz@cc65.org */ /* */ /* */ @@ -38,25 +38,34 @@ -#include +/*****************************************************************************/ +/* Data */ +/*****************************************************************************/ + + + +/* Constants that may be used as arguments for CreateMapFile */ +enum { + LONG_MAPFILE, + SHORT_MAPFILE +}; /*****************************************************************************/ -/* Code */ +/* Code */ /*****************************************************************************/ -void CreateMapFile (void); -/* Create a map file */ +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 */ -void CreateDbgFile (void); -/* Create a debug info file */ - /* End of mapfile.h */