From 11eb27cced6ff5a7fa5852afc2a8c256263a1cee Mon Sep 17 00:00:00 2001 From: Tennessee Carmel-Veilleux Date: Wed, 23 Jul 2014 15:08:55 -0400 Subject: [PATCH] Fixed copyright date --- dcc6502.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dcc6502.c b/dcc6502.c index aa50d5e..0bef3ec 100644 --- a/dcc6502.c +++ b/dcc6502.c @@ -2,7 +2,7 @@ /* DCC6502.c -> Main module of: */ /* Disassembler and Cycle Counter for the 6502 microprocessor */ /* */ -/* (C) 1998-2003 Tennessee Carmel-Veilleux(veilleux@ameth.org)*/ +/* (C) 1998-2014 Tennessee Carmel-Veilleux(veilleux@ameth.org)*/ /* This code is offered as FREEware. You cannot modify nor */ /* distribute modified versions of this software without */ /* prior written consent of the author(s). The author shall */ @@ -584,7 +584,7 @@ void disassemble(char *output) { } void version(void) { - fprintf(stderr, "DCC6502 %s (C)1998-2003 Tennessee Carmel-Veilleux\n", VERSION_INFO); + fprintf(stderr, "DCC6502 %s (C)1998-2014 Tennessee Carmel-Veilleux\n", VERSION_INFO); fprintf(stderr, "This is free software. To see the LICENSE, use the -v parameter\n"); } @@ -604,7 +604,7 @@ void usage(void) { } void license(void) { - fprintf(stderr, "(C) 1998-2003 Tennessee Carmel-Veilleux(veilleux@ameth.org)\n"); + fprintf(stderr, "(C) 1998-2014 Tennessee Carmel-Veilleux(veilleux@ameth.org)\n"); fprintf(stderr, "This code is offered as FREEware. You cannot modify nor\n"); fprintf(stderr, "distribute modified versions of this software without\n"); fprintf(stderr, "prior written consent of the author(s). The author shall\n");