]> git.sur5r.net Git - cc65/blobdiff - src/ca65/global.h
Enable even more warnings
[cc65] / src / ca65 / global.h
index 4bd7f9af0e802ddaa261d7e2aae06104d3a24c87..f325e32f154d5ac5ebe09a35fa8cb44a21a93ccd 100644 (file)
@@ -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" */