add copyright stuff to substantially changed files

This commit is contained in:
kub 2020-05-16 21:16:27 +02:00
parent d39eb595bb
commit b718aa2d93
6 changed files with 10 additions and 1 deletions

View file

@ -1,6 +1,7 @@
/* /*
* PicoDrive * PicoDrive
* (C) notaz, 2009,2010 * (C) notaz, 2009,2010
* (C) kub, 2019
* *
* This work is licensed under the terms of MAME license. * This work is licensed under the terms of MAME license.
* See COPYING file in the top-level directory. * See COPYING file in the top-level directory.

View file

@ -2,6 +2,7 @@
* line renderer * line renderer
* (c) Copyright Dave, 2004 * (c) Copyright Dave, 2004
* (C) notaz, 2006-2010 * (C) notaz, 2006-2010
* (C) kub, 2019-2020
* *
* This work is licensed under the terms of MAME license. * This work is licensed under the terms of MAME license.
* See COPYING file in the top-level directory. * See COPYING file in the top-level directory.

View file

@ -1,6 +1,7 @@
/* /*
* assembly optimized versions of most funtions from draw.c * assembly optimized versions of most funtions from draw.c
* (C) notaz, 2006-2010,2017 * (C) notaz, 2006-2010,2017
* (C) kub, 2020
* *
* This work is licensed under the terms of MAME license. * This work is licensed under the terms of MAME license.
* See COPYING file in the top-level directory. * See COPYING file in the top-level directory.

View file

@ -1,6 +1,7 @@
/* /*
* rarely used EEPROM code * rarely used EEPROM code
* (C) notaz, 2006-2008 * (C) notaz, 2006-2008
* (C) kub, 2020
* *
* This work is licensed under the terms of MAME license. * This work is licensed under the terms of MAME license.
* See COPYING file in the top-level directory. * See COPYING file in the top-level directory.

View file

@ -1,3 +1,7 @@
/*
* DRC host disassembler interface for MIPS/ARM32 for use without binutils
* (C) kub, 2018,2019
*/
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdint.h> #include <stdint.h>

View file

@ -923,7 +923,8 @@ static void draw_frame_credits(void)
} }
static const char credits[] = static const char credits[] =
"PicoDrive v" VERSION " (c) notaz, 2006-2013\n\n\n" "PicoDrive v" VERSION "\n"
"(c) notaz, 2006-2013; irixxxx, 2018-2020\n\n"
"Credits:\n" "Credits:\n"
"fDave: initial code\n" "fDave: initial code\n"
#ifdef EMU_C68K #ifdef EMU_C68K