X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fld65%2Fglobal.h;h=4b873f027ca8887ab289c3217df45ab1af5c5494;hb=cf7f3abadd27567ec3950ac82b0f6c3f9fbfd4c8;hp=39056cfcd94194ff6d770af7f864fd6bf63676aa;hpb=53dd513176425872128ef26031d00952ef7a0628;p=cc65 diff --git a/src/ld65/global.h b/src/ld65/global.h index 39056cfcd..4b873f027 100644 --- a/src/ld65/global.h +++ b/src/ld65/global.h @@ -1,15 +1,15 @@ /*****************************************************************************/ /* */ -/* global.h */ +/* global.h */ /* */ -/* Global variables for the ld65 linker */ +/* Global variables for the ld65 linker */ /* */ /* */ /* */ -/* (C) 1998 Ullrich von Bassewitz */ -/* Wacholderweg 14 */ -/* D-70597 Stuttgart */ -/* EMail: uz@musoftware.de */ +/* (C) 1998-2010, Ullrich von Bassewitz */ +/* Roemerstrasse 52 */ +/* D-70794 Filderstadt */ +/* EMail: uz@cc65.org */ /* */ /* */ /* This software is provided 'as-is', without any expressed or implied */ @@ -39,28 +39,26 @@ /*****************************************************************************/ -/* Data */ +/* Data */ /*****************************************************************************/ -extern const char* ProgName; /* Program name */ +extern const char* OutputName; /* Name of output file */ +extern unsigned OutputNameUsed; /* Output name was used by %O */ -extern const char* OutputName; /* Name of output file */ +extern unsigned ModuleId; /* Id for o65 module */ -extern unsigned long StartAddr; /* Start address */ +extern unsigned char HaveStartAddr; /* True if start address was given */ +extern unsigned long StartAddr; /* Start address */ -extern unsigned char Verbose; /* Verbose operation flag */ -extern unsigned char VerboseMap; /* Verbose map file */ -extern const char* MapFileName; /* Name of the map file */ -extern const char* LabelFileName; /* Name of the label file */ -extern unsigned char WProtSegs; /* Mark write protected segments */ +extern unsigned char VerboseMap; /* Verbose map file */ +extern const char* MapFileName; /* Name of the map file */ +extern const char* LabelFileName; /* Name of the label file */ +extern const char* DbgFileName; /* Name of the debug file */ /* End of global.h */ #endif - - -