unsigned char CComments = 0; /* Allow C like comments */
unsigned char ForceRange = 0; /* Force values into expected range */
unsigned char UnderlineInNumbers = 0; /* Allow underlines in numbers */
-
-/* Misc stuff */
-const char Copyright[] = "(C) Copyright 1998-2011 Ullrich von Bassewitz";
-
-
-
extern unsigned char ForceRange; /* Force values into expected range */
extern unsigned char UnderlineInNumbers; /* Allow underlines in numbers */
-/* Misc stuff */
-extern const char Copyright[]; /* Copyright string */
-
/* End of global.h */
/* Print the header on the new page */
fprintf (F,
- "ca65 V%s - %s\n"
+ "ca65 V%s\n"
"Main file : %s\n"
"Current file: %.*s\n"
"\n",
- GetVersionAsString (), Copyright,
+ GetVersionAsString (),
InFile,
(int) SB_GetLen (CurFile), SB_GetConstBuf (CurFile));
const char* Arg attribute ((unused)))
/* Print the assembler version */
{
- fprintf (stderr, "ca65 V%s - %s\n", GetVersionAsString (), Copyright);
+ fprintf (stderr, "ca65 V%s\n", GetVersionAsString ());
}