]> git.sur5r.net Git - cc65/blobdiff - src/co65/global.h
Merge remote-tracking branch 'upstream/master' into a5200
[cc65] / src / co65 / global.h
index 4359b4cdae97e41e599857ee70acffeb3125e178..29c17ca294b71c3b357b0d94e0b0174721455757 100644 (file)
@@ -1,6 +1,6 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                global.h                                  */
+/*                                 global.h                                  */
 /*                                                                           */
 /*            Global variables for the co65 object file converter            */
 /*                                                                           */
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
 /* File names */
-extern const char*             InputName;          /* Name of input file */
-extern const char*             OutputName;         /* Name of output file */
+extern const char*      InputName;          /* Name of input file */
+extern const char*      OutputName;         /* Name of output file */
 
 /* Default extensions */
-extern const char              AsmExt[];           /* Default assembler extension */
+extern const char       AsmExt[];           /* Default assembler extension */
 
 /* Segment names */
 extern const char*      CodeSeg;            /* Name of the code segment */
@@ -65,12 +65,10 @@ extern const char*      ZeropageLabel;      /* Label for the zeropage segment */
 
 /* Flags */
 extern unsigned char    DebugInfo;          /* Enable debug info */
+extern unsigned char    NoOutput;           /* Suppress the actual conversion */
 
 
 
 /* End of global.h */
 
 #endif
-
-
-