X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fld65%2Fglobal.c;h=94f378dec5aee7a5dcdfc06ecc43331ad528f390;hb=7bd19b737aacfcf0d81e2bc3a6e537ee72a4eb2f;hp=fe27c603337ddf0a49ea723f20f6834faf98e1d1;hpb=2767f66146ff0af2d26933a2f9cae6282c4bd6b6;p=cc65 diff --git a/src/ld65/global.c b/src/ld65/global.c index fe27c6033..94f378dec 100644 --- a/src/ld65/global.c +++ b/src/ld65/global.c @@ -6,10 +6,10 @@ /* */ /* */ /* */ -/* (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 */ @@ -44,14 +44,18 @@ const char* OutputName = "a.out"; /* Name of output file */ +unsigned OutputNameUsed = 0; /* Output name was used by %O */ -unsigned long StartAddr = 0x200; /* Start address */ +unsigned ModuleId = 0; /* Id for o65 module */ + +/* Start address */ +unsigned char HaveStartAddr = 0; /* Start address not given */ +unsigned long StartAddr = 0x200; /* Start address */ -unsigned char Verbose = 0; /* Verbose operation flag */ unsigned char VerboseMap = 0; /* Verbose map file */ const char* MapFileName = 0; /* Name of the map file */ const char* LabelFileName = 0; /* Name of the label file */ -unsigned char WProtSegs = 0; /* Mark write protected segments */ +const char* DbgFileName = 0; /* Name of the debug file */