瀏覽代碼

add copyright stuff to substantially changed files

kub 4 年之前
父節點
當前提交
b718aa2d93
共有 6 個文件被更改,包括 10 次插入1 次删除
  1. 1 0
      pico/32x/draw.c
  2. 1 0
      pico/draw.c
  3. 1 0
      pico/draw_arm.S
  4. 1 0
      pico/misc.c
  5. 4 0
      platform/common/host_dasm.c
  6. 2 1
      platform/common/menu_pico.c

+ 1 - 0
pico/32x/draw.c

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

+ 1 - 0
pico/draw.c

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

+ 1 - 0
pico/draw_arm.S

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

+ 1 - 0
pico/misc.c

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

+ 4 - 0
platform/common/host_dasm.c

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

+ 2 - 1
platform/common/menu_pico.c

@@ -923,7 +923,8 @@ static void draw_frame_credits(void)
 }
 
 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"
 	"fDave: initial code\n"
 #ifdef EMU_C68K