X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fca65%2Fglobal.h;h=a29901651ace1d21f51a91608079ffedcad75232;hb=112ae0e3db511ddd92e769c11328646ebe2a6240;hp=f75d12335982a9bb2c44f76cfced7dd72112806b;hpb=5c63b08d26cf167bfe8ef1a52f6e6f1dd0746a83;p=cc65 diff --git a/src/ca65/global.h b/src/ca65/global.h index f75d12335..a29901651 100644 --- a/src/ca65/global.h +++ b/src/ca65/global.h @@ -6,10 +6,10 @@ /* */ /* */ /* */ -/* (C) 1998-2003 Ullrich von Bassewitz */ -/* Römerstraße 52 */ -/* D-70794 Filderstadt */ -/* EMail: uz@cc65.org */ +/* (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 */ @@ -38,6 +38,11 @@ +/* common */ +#include "strbuf.h" + + + /*****************************************************************************/ /* Data */ /*****************************************************************************/ @@ -48,6 +53,8 @@ extern const char* InFile; /* Name of input file */ extern const char* OutFile; /* Name of output file */ extern const char* ListFile; /* Name of listing file */ +extern StrBuf DepName; /* Name of dependencies file */ +extern StrBuf FullDepName; /* Name of full dependencies file */ /* Default extensions */ extern const char ObjExt[]; /* Default object extension */ @@ -72,6 +79,9 @@ extern unsigned char DollarInIdents; /* Allow '$' in identifiers */ extern unsigned char LeadingDotInIdents; /* Allow '.' to start an identifier */ extern unsigned char PCAssignment; /* Allow "* = $XXX" or "$ = $XXX" */ extern unsigned char MissingCharTerm; /* Allow lda #'a (no closing term) */ +extern unsigned char UbiquitousIdents; /* Allow ubiquitous identifiers */ +extern unsigned char OrgPerSeg; /* Make .org local to current seg */ +extern unsigned char CComments; /* Allow C like comments */ /* Misc stuff */ extern const char Copyright[]; /* Copyright string */