]> git.sur5r.net Git - cc65/blobdiff - src/ca65/global.c
Fixed a problem with --feature labels_without_colons: The scanner inserts
[cc65] / src / ca65 / global.c
index 574654edc2a85cfc84b2885ae2ebffd447e8eabd..2449ce44e8dab582502075695d4abcda398291fd 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                global.c                                  */
+/*                                global.c                                  */
 /*                                                                           */
 /*              Global variables for the ca65 macroassembler                */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998-2000 Ullrich von Bassewitz                                       */
-/*               Wacholderweg 14                                             */
-/*               D-70597 Stuttgart                                           */
-/* EMail:        uz@musoftware.de                                            */
+/* (C) 1998-2004 Ullrich von Bassewitz                                       */
+/*               Römerstraße 52                                              */
+/*               D-70794 Filderstadt                                         */
+/* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 
 
+/* common */
+#include "addrsize.h"
+
+/* ca65 */
 #include "global.h"
 
 
 
 
 /* File names */
-const char* InFile                   = 0;      /* Name of input file */
-const char* OutFile                  = 0;      /* Name of output file */
-const char* ListFile                 = 0;      /* Name of listing file */
+const char* InFile                      = 0;   /* Name of input file */
+const char* OutFile                     = 0;   /* Name of output file */
+const char* ListFile                    = 0;   /* Name of listing file */
 
 /* Default extensions */
-const char ObjExt[]                  = ".o";   /* Default object extension */
-const char ListExt[]                 = ".lst"; /* Default listing extension */
+const char ObjExt[]                     = ".o";/* Default object extension */
+const char ListExt[]                    = ".lst"; /* Default listing extension */
 
-char LocalStart                      = '@';    /* This char starts local symbols */
+char LocalStart                         = '@'; /* This char starts local symbols */
 
-unsigned char IgnoreCase      = 0;     /* Ignore case on identifiers? */
-unsigned char AutoImport      = 0;     /* Mark unresolveds as import */
-unsigned char Verbose         = 0;      /* Verbose operation flag */
-unsigned char SmartMode              = 0;      /* Smart mode */
-unsigned char DbgSyms        = 0;      /* Add debug symbols */
-unsigned char Listing                = 0;      /* Create listing file */
-unsigned char LineCont       = 0;      /* Allow line continuation */
+unsigned char IgnoreCase         = 0;   /* Ignore case on identifiers? */
+unsigned char AutoImport         = 0;   /* Mark unresolveds as import */
+unsigned char SmartMode                 = 0;   /* Smart mode */
+unsigned char DbgSyms           = 0;   /* Add debug symbols */
+unsigned char Listing                   = 0;   /* Create listing file */
+unsigned char LineCont          = 0;   /* Allow line continuation */
 
 /* Emulation features */
-unsigned char DollarIsPC      = 0;      /* Allow the $ symbol as current PC */
-unsigned char NoColonLabels   = 0;             /* Allow labels without a colon */
-unsigned char LooseStringTerm = 0;     /* Allow ' as string terminator */
-unsigned char AtInIdents      = 0;     /* Allow '@' in identifiers */
-unsigned char DollarInIdents  = 0;     /* Allow '$' in identifiers */
-
+unsigned char DollarIsPC         = 0;   /* Allow the $ symbol as current PC */
+unsigned char NoColonLabels      = 0;   /* Allow labels without a colon */
+unsigned char LooseStringTerm    = 0;  /* Allow ' as string terminator */
+unsigned char LooseCharTerm      = 0;  /* Allow " for char constants */
+unsigned char AtInIdents         = 0;  /* Allow '@' in identifiers */
+unsigned char DollarInIdents     = 0;   /* Allow '$' in identifiers */
+unsigned char LeadingDotInIdents = 0;   /* Allow '.' to start an identifier */
+unsigned char PCAssignment       = 0;  /* Allow "* = $XXX" or "$ = $XXX" */
+unsigned char MissingCharTerm    = 0;   /* Allow lda #'a (no closing term) */
+unsigned char UbiquitousIdents   = 0;   /* Allow ubiquitous identifiers */
+
+/* Misc stuff */
+const char Copyright[]           = "(C) Copyright 1998-2005 Ullrich von Bassewitz";