No copyright message here.
This commit is contained in:
@@ -82,9 +82,3 @@ unsigned char OrgPerSeg = 0; /* Make .org local to current seg */
|
|||||||
unsigned char CComments = 0; /* Allow C like comments */
|
unsigned char CComments = 0; /* Allow C like comments */
|
||||||
unsigned char ForceRange = 0; /* Force values into expected range */
|
unsigned char ForceRange = 0; /* Force values into expected range */
|
||||||
unsigned char UnderlineInNumbers = 0; /* Allow underlines in numbers */
|
unsigned char UnderlineInNumbers = 0; /* Allow underlines in numbers */
|
||||||
|
|
||||||
/* Misc stuff */
|
|
||||||
const char Copyright[] = "(C) Copyright 1998-2011 Ullrich von Bassewitz";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -85,9 +85,6 @@ extern unsigned char CComments; /* Allow C like comments */
|
|||||||
extern unsigned char ForceRange; /* Force values into expected range */
|
extern unsigned char ForceRange; /* Force values into expected range */
|
||||||
extern unsigned char UnderlineInNumbers; /* Allow underlines in numbers */
|
extern unsigned char UnderlineInNumbers; /* Allow underlines in numbers */
|
||||||
|
|
||||||
/* Misc stuff */
|
|
||||||
extern const char Copyright[]; /* Copyright string */
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* End of global.h */
|
/* End of global.h */
|
||||||
|
|||||||
@@ -225,11 +225,11 @@ static void PrintPageHeader (FILE* F, const ListLine* L)
|
|||||||
|
|
||||||
/* Print the header on the new page */
|
/* Print the header on the new page */
|
||||||
fprintf (F,
|
fprintf (F,
|
||||||
"ca65 V%s - %s\n"
|
"ca65 V%s\n"
|
||||||
"Main file : %s\n"
|
"Main file : %s\n"
|
||||||
"Current file: %.*s\n"
|
"Current file: %.*s\n"
|
||||||
"\n",
|
"\n",
|
||||||
GetVersionAsString (), Copyright,
|
GetVersionAsString (),
|
||||||
InFile,
|
InFile,
|
||||||
(int) SB_GetLen (CurFile), SB_GetConstBuf (CurFile));
|
(int) SB_GetLen (CurFile), SB_GetConstBuf (CurFile));
|
||||||
|
|
||||||
|
|||||||
@@ -600,7 +600,7 @@ static void OptVersion (const char* Opt attribute ((unused)),
|
|||||||
const char* Arg attribute ((unused)))
|
const char* Arg attribute ((unused)))
|
||||||
/* Print the assembler version */
|
/* Print the assembler version */
|
||||||
{
|
{
|
||||||
fprintf (stderr, "ca65 V%s - %s\n", GetVersionAsString (), Copyright);
|
fprintf (stderr, "ca65 V%s\n", GetVersionAsString ());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user