]> git.sur5r.net Git - cc65/blobdiff - src/ca65/global.h
Merge pull request #297 from groessler/something_to_pull
[cc65] / src / ca65 / global.h
index f325e32f154d5ac5ebe09a35fa8cb44a21a93ccd..397d9221b26c61a01ccb99ae60a98701ea2c45f1 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                global.h                                  */
+/*                                 global.h                                  */
 /*                                                                           */
-/*              Global variables for the ca65 macroassembler                */
+/*               Global variables for the ca65 macroassembler                */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998-2000 Ullrich von Bassewitz                                       */
-/*               Wacholderweg 14                                             */
-/*               D-70597 Stuttgart                                           */
-/* EMail:        uz@musoftware.de                                            */
+/* (C) 1998-2013, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 
 
+/* common */
+#include "strbuf.h"
+
+
+
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
 /* File names */
-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 const char*      InFile;             /* Name of input file */
+extern const char*      OutFile;            /* Name of output file */
+extern StrBuf           ListingName;        /* 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 */
-extern const char      ListExt[];      /* Default listing extension */
+extern const char       ObjExt[];           /* Default object extension */
 
-extern char            LocalStart;     /* This char starts local symbols */
+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   SmartMode;      /* Smart mode */
-extern unsigned char           DbgSyms;        /* Add debug symbols */
-extern unsigned char   Listing;        /* Create listing file */
-extern unsigned char   LineCont;       /* Allow line continuation */
+extern unsigned char    IgnoreCase;         /* Ignore case on identifiers? */
+extern unsigned char    AutoImport;         /* Mark unresolveds as import */
+extern unsigned char    SmartMode;          /* Smart mode */
+extern unsigned char    DbgSyms;            /* Add debug symbols */
+extern unsigned char    LineCont;           /* Allow line continuation */
+extern unsigned char    LargeAlignment;     /* Don't warn about large alignments */
+extern unsigned char    RelaxChecks;        /* Relax a few assembler checks */
 
 /* Emulation features */
-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" */
+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    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 */
+extern unsigned char    ForceRange;         /* Force values into expected range */
+extern unsigned char    UnderlineInNumbers; /* Allow underlines in numbers */
+extern unsigned char    AddrSize;           /* Allow .ADDRSIZE function */
+extern unsigned char    BracketAsIndirect;  /* Use '[]' not '()' for indirection */
+
 
 
 
 /* End of global.h */
 
 #endif
-
-
-