X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fca65%2Fglobal.h;h=f325e32f154d5ac5ebe09a35fa8cb44a21a93ccd;hb=e67f4dcbd6a50c170d3e45da4fdcd08e4f6caeab;hp=4bd7f9af0e802ddaa261d7e2aae06104d3a24c87;hpb=53dd513176425872128ef26031d00952ef7a0628;p=cc65 diff --git a/src/ca65/global.h b/src/ca65/global.h index 4bd7f9af0..f325e32f1 100644 --- a/src/ca65/global.h +++ b/src/ca65/global.h @@ -44,8 +44,6 @@ -extern const char* ProgName; /* Program name */ - /* File names */ extern const char* InFile; /* Name of input file */ extern const char* OutFile; /* Name of output file */ @@ -59,7 +57,6 @@ extern char LocalStart; /* This char starts local symbols */ extern unsigned char IgnoreCase; /* Ignore case on identifiers? */ extern unsigned char AutoImport; /* Mark unresolveds as import */ -extern unsigned char Verbose; /* Verbose operation flag */ extern unsigned char SmartMode; /* Smart mode */ extern unsigned char DbgSyms; /* Add debug symbols */ extern unsigned char Listing; /* Create listing file */ @@ -69,8 +66,10 @@ extern unsigned char LineCont; /* Allow line continuation */ extern unsigned char DollarIsPC; /* Allow the $ symbol as current PC */ extern unsigned char NoColonLabels; /* Allow labels without a colon */ extern unsigned char LooseStringTerm;/* Allow ' as string terminator */ +extern unsigned char LooseCharTerm; /* Allow " for char constants */ extern unsigned char AtInIdents; /* Allow '@' in identifiers */ extern unsigned char DollarInIdents; /* Allow '$' in identifiers */ +extern unsigned char PCAssignment; /* Allow "* = $XXX" or "$ = $XXX" */