From 7bf552b5fafedc88c918a61d74a9f6eb9d3f61d3 Mon Sep 17 00:00:00 2001 From: kub Date: Tue, 2 Jul 2024 22:55:50 +0200 Subject: [PATCH] add/update copyright notices for substantially changed files --- cpu/DrZ80/drz80.S | 1 + cpu/drc/emit_arm.c | 2 +- cpu/drc/emit_arm64.c | 2 +- cpu/drc/emit_mips.c | 2 +- cpu/drc/emit_ppc.c | 2 +- cpu/drc/emit_riscv.c | 2 +- cpu/drc/emit_x86.c | 2 +- cpu/sh2/compiler.c | 2 +- pico/32x/32x.c | 1 + pico/32x/draw.c | 2 +- pico/32x/draw_arm.S | 2 +- pico/32x/memory.c | 2 +- pico/32x/memory_arm.S | 2 +- pico/32x/pwm.c | 1 + pico/32x/sh2soc.c | 1 + pico/cart.c | 1 + pico/carthw/carthw.c | 1 + pico/carthw/svp/compiler.c | 1 + pico/cd/cd_parse.c | 1 + pico/cd/mcd.c | 1 + pico/cd/memory.c | 1 + pico/draw.c | 2 +- pico/draw2.c | 1 + pico/draw2_arm.S | 1 + pico/draw_arm.S | 2 +- pico/memory.c | 1 + pico/memory_arm.S | 2 +- pico/mode4.c | 2 +- pico/pico.c | 1 + pico/pico_cmn.c | 1 + pico/sms.c | 2 +- pico/sound/mix.c | 2 +- pico/sound/mix_arm.S | 1 + pico/sound/resampler.c | 2 +- pico/sound/resampler.h | 2 +- pico/sound/sound.c | 1 + pico/sound/ym2612_arm.S | 2 +- pico/videoport.c | 2 +- platform/common/arm_utils.s | 1 + platform/common/dismips.c | 2 +- platform/common/host_dasm.c | 2 +- platform/common/mp3_drmp3.c | 2 +- platform/common/mp3_minimp3.c | 2 +- platform/common/plat_sdl.c | 2 +- platform/common/upscale.c | 2 +- platform/common/upscale.h | 2 +- platform/gp2x/emu.c | 1 + platform/libretro/libretro.c | 2 +- platform/ps2/emu.c | 6 ++++++ platform/ps2/in_ps2.c | 6 ++++++ platform/ps2/plat.c | 6 ++++++ platform/psp/emu.c | 3 ++- platform/psp/in_psp.c | 4 +++- platform/psp/mp3.c | 3 ++- platform/psp/plat.c | 2 +- tools/release.sh | 2 ++ 56 files changed, 76 insertions(+), 33 deletions(-) diff --git a/cpu/DrZ80/drz80.S b/cpu/DrZ80/drz80.S index 655814ca..5a075299 100644 --- a/cpu/DrZ80/drz80.S +++ b/cpu/DrZ80/drz80.S @@ -1,6 +1,7 @@ ;@ Reesy's Z80 Emulator Version 0.001 ;@ (c) Copyright 2004 Reesy, All rights reserved +;@ (c) Copyright 2021-24 irixxxx, All rights reserved ;@ DrZ80 is free for non-commercial use. ;@ For commercial use, separate licencing terms must be obtained. diff --git a/cpu/drc/emit_arm.c b/cpu/drc/emit_arm.c index ecaf06e2..3d1184dd 100644 --- a/cpu/drc/emit_arm.c +++ b/cpu/drc/emit_arm.c @@ -1,7 +1,7 @@ /* * Basic macros to emit ARM instructions and some utils * Copyright (C) 2008,2009,2010 notaz - * Copyright (C) 2019-2024 kub + * Copyright (C) 2019-2024 irixxxx * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/cpu/drc/emit_arm64.c b/cpu/drc/emit_arm64.c index 10eb8a2a..39ae82fe 100644 --- a/cpu/drc/emit_arm64.c +++ b/cpu/drc/emit_arm64.c @@ -1,6 +1,6 @@ /* * Basic macros to emit ARM A64 instructions and some utils - * Copyright (C) 2019-2024 kub + * Copyright (C) 2019-2024 irixxxx * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/cpu/drc/emit_mips.c b/cpu/drc/emit_mips.c index a92709d3..e09bcf87 100644 --- a/cpu/drc/emit_mips.c +++ b/cpu/drc/emit_mips.c @@ -1,6 +1,6 @@ /* * Basic macros to emit MIPS32/MIPS64 Release 1 or 2 instructions and some utils - * Copyright (C) 2019-2024 kub + * Copyright (C) 2019-2024 irixxxx * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/cpu/drc/emit_ppc.c b/cpu/drc/emit_ppc.c index a765eb1e..620c7c1c 100644 --- a/cpu/drc/emit_ppc.c +++ b/cpu/drc/emit_ppc.c @@ -1,6 +1,6 @@ /* * Basic macros to emit PowerISA 2.03 64 bit instructions and some utils - * Copyright (C) 2020-2024 kub + * Copyright (C) 2020-2024 irixxxx * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/cpu/drc/emit_riscv.c b/cpu/drc/emit_riscv.c index 0670a45c..5783b759 100644 --- a/cpu/drc/emit_riscv.c +++ b/cpu/drc/emit_riscv.c @@ -1,6 +1,6 @@ /* * Basic macros to emit RISC-V RV64IM instructions and some utils - * Copyright (C) 2019-2024 kub + * Copyright (C) 2019-2024 irixxxx * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/cpu/drc/emit_x86.c b/cpu/drc/emit_x86.c index 3f08e678..6d2598ea 100644 --- a/cpu/drc/emit_x86.c +++ b/cpu/drc/emit_x86.c @@ -1,7 +1,7 @@ /* * Basic macros to emit x86 instructions and some utils * Copyright (C) 2008,2009,2010 notaz - * Copyright (C) 2019-2024 kub + * Copyright (C) 2019-2024 irixxxx * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/cpu/sh2/compiler.c b/cpu/sh2/compiler.c index 420c307c..a5d5c879 100644 --- a/cpu/sh2/compiler.c +++ b/cpu/sh2/compiler.c @@ -1,7 +1,7 @@ /* * SH2 recompiler * (C) notaz, 2009,2010,2013 - * (C) kub, 2018-2024 + * (C) irixxxx, 2018-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/32x/32x.c b/pico/32x/32x.c index 00239a11..de0193c3 100644 --- a/pico/32x/32x.c +++ b/pico/32x/32x.c @@ -1,6 +1,7 @@ /* * PicoDrive * (C) notaz, 2009,2010,2013 + * (C) irixxxx, 2019-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/32x/draw.c b/pico/32x/draw.c index 52b33ee6..a119e6bb 100644 --- a/pico/32x/draw.c +++ b/pico/32x/draw.c @@ -1,7 +1,7 @@ /* * PicoDrive * (C) notaz, 2009,2010 - * (C) kub, 2019 + * (C) irixxxx, 2019-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/32x/draw_arm.S b/pico/32x/draw_arm.S index 4ed4af25..f2b992fe 100644 --- a/pico/32x/draw_arm.S +++ b/pico/32x/draw_arm.S @@ -1,7 +1,7 @@ @* @* PicoDrive @* (C) notaz, 2010 -@* (C) kub, 2019 +@* (C) irixxxx, 2019-2023 @* @* This work is licensed under the terms of MAME license. @* See COPYING file in the top-level directory. diff --git a/pico/32x/memory.c b/pico/32x/memory.c index 1d17f9f6..46cee678 100644 --- a/pico/32x/memory.c +++ b/pico/32x/memory.c @@ -1,7 +1,7 @@ /* * PicoDrive * (C) notaz, 2009,2010,2013 - * (C) kub, 2019 + * (C) irixxxx, 2019-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/32x/memory_arm.S b/pico/32x/memory_arm.S index 642e13ca..1af4366b 100644 --- a/pico/32x/memory_arm.S +++ b/pico/32x/memory_arm.S @@ -1,6 +1,6 @@ /* * PicoDrive 32X memory access functions, assembler version - * (C) KUB, 2018 + * (C) irixxxx, 2018-2021 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/32x/pwm.c b/pico/32x/pwm.c index e08ff026..6c66146e 100644 --- a/pico/32x/pwm.c +++ b/pico/32x/pwm.c @@ -1,6 +1,7 @@ /* * PicoDrive * (C) notaz, 2009,2010,2013 + * (C) irixxxx, 2019-2023 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/32x/sh2soc.c b/pico/32x/sh2soc.c index 6b122eac..51169a88 100644 --- a/pico/32x/sh2soc.c +++ b/pico/32x/sh2soc.c @@ -1,6 +1,7 @@ /* * SH2 peripherals/"system on chip" * (C) notaz, 2013 + * (C) irixxxx, 2019-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/cart.c b/pico/cart.c index 13218031..a196dfdf 100644 --- a/pico/cart.c +++ b/pico/cart.c @@ -2,6 +2,7 @@ * PicoDrive * (c) Copyright Dave, 2004 * (C) notaz, 2006-2010 + * (C) irixxxx, 2020-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/carthw/carthw.c b/pico/carthw/carthw.c index 58669f59..ccafe726 100644 --- a/pico/carthw/carthw.c +++ b/pico/carthw/carthw.c @@ -1,6 +1,7 @@ /* * Support for a few cart mappers and some protection. * (C) notaz, 2008-2011 + * (C) irixxxx, 2021-2022 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/carthw/svp/compiler.c b/pico/carthw/svp/compiler.c index 941187ce..9cc0f883 100644 --- a/pico/carthw/svp/compiler.c +++ b/pico/carthw/svp/compiler.c @@ -1,6 +1,7 @@ /* * SSP1601 to ARM recompiler * (C) notaz, 2008,2009,2010 + * (C) irixxxx, 2019-2023 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/cd/cd_parse.c b/pico/cd/cd_parse.c index 0a802ed3..aebd7d12 100644 --- a/pico/cd/cd_parse.c +++ b/pico/cd/cd_parse.c @@ -1,6 +1,7 @@ /* * cuefile handling * (C) notaz, 2008 + * (C) irixxxx, 2020-2023 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/cd/mcd.c b/pico/cd/mcd.c index 60acd6df..ca94aab9 100644 --- a/pico/cd/mcd.c +++ b/pico/cd/mcd.c @@ -1,6 +1,7 @@ /* * PicoDrive * (C) notaz, 2007,2013 + * (C) irixxxx, 2019-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/cd/memory.c b/pico/cd/memory.c index d6cf1273..99c6610b 100644 --- a/pico/cd/memory.c +++ b/pico/cd/memory.c @@ -1,6 +1,7 @@ /* * Memory I/O handlers for Sega/Mega CD. * (C) notaz, 2007-2009 + * (C) irixxxx, 2019-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/draw.c b/pico/draw.c index 95b82b19..5868268b 100644 --- a/pico/draw.c +++ b/pico/draw.c @@ -2,7 +2,7 @@ * line renderer * (c) Copyright Dave, 2004 * (C) notaz, 2006-2010 - * (C) kub, 2019-2020 + * (C) irixxxx, 2019-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/draw2.c b/pico/draw2.c index 4882af14..b4d0ec76 100644 --- a/pico/draw2.c +++ b/pico/draw2.c @@ -1,6 +1,7 @@ /* * tile renderer * (C) notaz, 2006-2008 + * (C) irixxxx, 2020-2023 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/draw2_arm.S b/pico/draw2_arm.S index c926ce6a..aa630244 100644 --- a/pico/draw2_arm.S +++ b/pico/draw2_arm.S @@ -1,6 +1,7 @@ /* * assembly optimized versions of most funtions from draw2.c * (C) notaz, 2006-2008 + * (C) irixxxx, 2019-2023 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/draw_arm.S b/pico/draw_arm.S index 37617b91..e3f6ce83 100644 --- a/pico/draw_arm.S +++ b/pico/draw_arm.S @@ -1,7 +1,7 @@ /* * assembly optimized versions of most funtions from draw.c * (C) notaz, 2006-2010,2017 - * (C) kub, 2020 + * (C) irixxxx, 2020-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/memory.c b/pico/memory.c index 69ca8aa3..91bb2a80 100644 --- a/pico/memory.c +++ b/pico/memory.c @@ -2,6 +2,7 @@ * memory handling * (c) Copyright Dave, 2004 * (C) notaz, 2006-2010 + * (C) irixxxx, 2019-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/memory_arm.S b/pico/memory_arm.S index 607006ce..568be822 100644 --- a/pico/memory_arm.S +++ b/pico/memory_arm.S @@ -1,7 +1,7 @@ /* * PicoDrive * (C) notaz, 2006-2009 - * (C) kub, 2019 + * (C) irixxxx, 2019,2020 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/mode4.c b/pico/mode4.c index eada9741..38002536 100644 --- a/pico/mode4.c +++ b/pico/mode4.c @@ -1,7 +1,7 @@ /* * SMS renderer * (C) notaz, 2009-2010 - * (C) kub, 2021 + * (C) irixxxx, 2020-2024 * * currently supports VDP mode 4 (SMS and GG) and mode 3-0 (TMS) * modes numbered after the bit numbers used in Sega and TI documentation diff --git a/pico/pico.c b/pico/pico.c index 5be45ebf..6d061c2a 100644 --- a/pico/pico.c +++ b/pico/pico.c @@ -2,6 +2,7 @@ * PicoDrive * (c) Copyright Dave, 2004 * (C) notaz, 2006-2010 + * (C) irixxxx, 2020-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/pico_cmn.c b/pico/pico_cmn.c index af2e598c..e9b79952 100644 --- a/pico/pico_cmn.c +++ b/pico/pico_cmn.c @@ -1,6 +1,7 @@ /* * common code for base/cd/32x * (C) notaz, 2007-2009,2013 + * (C) irixxxx, 2020-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/sms.c b/pico/sms.c index 5ac0b919..919b6ea6 100644 --- a/pico/sms.c +++ b/pico/sms.c @@ -1,7 +1,7 @@ /* * SMS emulation * (C) notaz, 2009-2010 - * (C) kub, 2021 + * (C) irixxxx, 2021-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/sound/mix.c b/pico/sound/mix.c index edcdbb5f..1a4785d1 100644 --- a/pico/sound/mix.c +++ b/pico/sound/mix.c @@ -1,7 +1,7 @@ /* * some code for sample mixing * (C) notaz, 2006,2007 - * (C) kub, 2019,2020 added filtering + * (C) irixxxx, 2019,2020 added filtering * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/sound/mix_arm.S b/pico/sound/mix_arm.S index 835d30ab..64383c3a 100644 --- a/pico/sound/mix_arm.S +++ b/pico/sound/mix_arm.S @@ -1,6 +1,7 @@ /* * Generic routines for mixing audio samples * (C) notaz, 2007,2008 + * (C) irixxxx, 2019,2020 added filtering * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/sound/resampler.c b/pico/sound/resampler.c index 5761bc54..8fc0a785 100644 --- a/pico/sound/resampler.c +++ b/pico/sound/resampler.c @@ -1,6 +1,6 @@ /* Configurable fixed point resampling SINC filter for mono and stereo audio. * - * (C) 2022 kub + * (C) 2022 irixxxx * * This work is licensed under the terms of any of these licenses * (at your option): diff --git a/pico/sound/resampler.h b/pico/sound/resampler.h index eef60c03..b02de158 100644 --- a/pico/sound/resampler.h +++ b/pico/sound/resampler.h @@ -1,6 +1,6 @@ /* Configurable fixed point resampling SINC filter for mono and stereo audio. * - * (C) 2022 kub + * (C) 2022 irixxxx * * This work is licensed under the terms of any of these licenses * (at your option): diff --git a/pico/sound/sound.c b/pico/sound/sound.c index 2150f68d..650f7aca 100644 --- a/pico/sound/sound.c +++ b/pico/sound/sound.c @@ -2,6 +2,7 @@ * PicoDrive * (c) Copyright Dave, 2004 * (C) notaz, 2006-2009 + * (C) irixxxx, 2019-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/sound/ym2612_arm.S b/pico/sound/ym2612_arm.S index b899559d..a81f34e8 100644 --- a/pico/sound/ym2612_arm.S +++ b/pico/sound/ym2612_arm.S @@ -1,7 +1,7 @@ /* * PicoDrive * (C) notaz, 2006 - * (C) kub, 2020 added SSG-EG and simple output rate interpolation + * (C) irixxxx, 2020-2023 added SSG-EG and simple output rate interpolation * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/pico/videoport.c b/pico/videoport.c index 462e4703..9663e2bf 100644 --- a/pico/videoport.c +++ b/pico/videoport.c @@ -2,7 +2,7 @@ * PicoDrive * (c) Copyright Dave, 2004 * (C) notaz, 2006-2009 - * (C) kub, 2020,2021 + * (C) irixxxx, 2020-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/platform/common/arm_utils.s b/platform/common/arm_utils.s index be3a7600..e1d9a5a5 100644 --- a/platform/common/arm_utils.s +++ b/platform/common/arm_utils.s @@ -1,6 +1,7 @@ /* * some color conversion and blitting routines * (C) notaz, 2006-2009 + * (C) irixxxx, 2020-2023 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/platform/common/dismips.c b/platform/common/dismips.c index dbb1a3b8..280ae994 100644 --- a/platform/common/dismips.c +++ b/platform/common/dismips.c @@ -1,6 +1,6 @@ /* * very basic mips disassembler for MIPS32/MIPS64 Release 2, only for picodrive - * Copyright (C) 2019 kub + * Copyright (C) 2019-2021 irixxxx * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/platform/common/host_dasm.c b/platform/common/host_dasm.c index fb7a4259..b0f37d72 100644 --- a/platform/common/host_dasm.c +++ b/platform/common/host_dasm.c @@ -1,6 +1,6 @@ /* * DRC host disassembler interface for MIPS/ARM32 for use without binutils - * (C) kub, 2018,2019 + * (C) irixxxx, 2018-2021 */ #include #include diff --git a/platform/common/mp3_drmp3.c b/platform/common/mp3_drmp3.c index a2f3130b..f244c1b8 100644 --- a/platform/common/mp3_drmp3.c +++ b/platform/common/mp3_drmp3.c @@ -1,6 +1,6 @@ /* * MP3 decoding using dr_mp3 - * (C) kub, 2020 + * (C) irixxxx, 2020 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/platform/common/mp3_minimp3.c b/platform/common/mp3_minimp3.c index ee96e3b4..5b5a7f5b 100644 --- a/platform/common/mp3_minimp3.c +++ b/platform/common/mp3_minimp3.c @@ -1,6 +1,6 @@ /* * MP3 decoding using minimp3 - * (C) kub, 2020 + * (C) irixxxx, 2020 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/platform/common/plat_sdl.c b/platform/common/plat_sdl.c index 785fb1bf..140480e8 100644 --- a/platform/common/plat_sdl.c +++ b/platform/common/plat_sdl.c @@ -1,7 +1,7 @@ /* * PicoDrive * (C) notaz, 2013 - * (C) kub, 2020-2022 + * (C) irixxxx, 2020-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/platform/common/upscale.c b/platform/common/upscale.c index b750c80a..0aadbb19 100644 --- a/platform/common/upscale.c +++ b/platform/common/upscale.c @@ -24,7 +24,7 @@ * 320x224 -> 320x240, PAR 1:1, for NTSC, DAR 4:3 (PAL 7% etc etc...) * 160x144 -> 320x240: GG, PAR 6:5, scaling to 320x240 for DAR 4:3 * - * (C) 2021 kub + * (C) 2021 irixxxx * * This work is licensed under the terms of any of these licenses * (at your option): diff --git a/platform/common/upscale.h b/platform/common/upscale.h index c233f847..74e0c039 100644 --- a/platform/common/upscale.h +++ b/platform/common/upscale.h @@ -25,7 +25,7 @@ * 160x144 -> 320x240: GG, PAR 6:5, scaling to 320x240 for DAR 4:3 * * - * (C) 2021 kub + * (C) 2021 irixxxx * * This work is licensed under the terms of any of these licenses * (at your option): diff --git a/platform/gp2x/emu.c b/platform/gp2x/emu.c index aae7fbd5..8a1fda83 100644 --- a/platform/gp2x/emu.c +++ b/platform/gp2x/emu.c @@ -1,5 +1,6 @@ /* * (c) Copyright 2006-2010 notaz, All rights reserved. + * (c) Copyright 2019-2024 irixxxx * * For performance reasons 3 renderers are exported for both MD and 32x modes: * - 16bpp line renderer diff --git a/platform/libretro/libretro.c b/platform/libretro/libretro.c index b94254e3..ed2f289c 100644 --- a/platform/libretro/libretro.c +++ b/platform/libretro/libretro.c @@ -3,7 +3,7 @@ * (C) notaz, 2013 * (C) aliaspider, 2016 * (C) Daniel De Matteis, 2013 - * (C) kub, 2020 + * (C) irixxxx, 2020-2024 * * This work is licensed under the terms of MAME license. * See COPYING file in the top-level directory. diff --git a/platform/ps2/emu.c b/platform/ps2/emu.c index bd06d162..32c3d6c4 100644 --- a/platform/ps2/emu.c +++ b/platform/ps2/emu.c @@ -1,3 +1,9 @@ +/* + * PicoDrive PS2 frontend + * + * (C) fjtrujy,irixxxx, 2024 + */ + #include #include diff --git a/platform/ps2/in_ps2.c b/platform/ps2/in_ps2.c index 0b033f37..e7ff02e6 100644 --- a/platform/ps2/in_ps2.c +++ b/platform/ps2/in_ps2.c @@ -1,3 +1,9 @@ +/* + * PicoDrive input driver for PS2 + * + * (C) fjtrujy,irixxxx 2024 + */ + #include #include #include diff --git a/platform/ps2/plat.c b/platform/ps2/plat.c index 40813792..7e134e09 100644 --- a/platform/ps2/plat.c +++ b/platform/ps2/plat.c @@ -1,3 +1,9 @@ +/* + * PicoDrive platform interface for PS2 + * + * (C) fjtrujy,irixxxx 2024 + */ + #include #include #include diff --git a/platform/psp/emu.c b/platform/psp/emu.c index 948102bb..a3e22571 100644 --- a/platform/psp/emu.c +++ b/platform/psp/emu.c @@ -1,5 +1,6 @@ /* - * PicoDrive + * PicoDrive PSP frontend + * * (C) notaz, 2007,2008 * (C) irixxxx, 2022-2024 * diff --git a/platform/psp/in_psp.c b/platform/psp/in_psp.c index f2751703..779c02cc 100644 --- a/platform/psp/in_psp.c +++ b/platform/psp/in_psp.c @@ -1,6 +1,8 @@ /* + * PicoDrive input driver for PSP + * * (C) Gražvydas "notaz" Ignotas, 2006-2012 - * (C) kub 2020 + * (C) irixxxx 2020 * * This work is licensed under the terms of any of these licenses * (at your option): diff --git a/platform/psp/mp3.c b/platform/psp/mp3.c index 2d37a9b8..7fefb977 100644 --- a/platform/psp/mp3.c +++ b/platform/psp/mp3.c @@ -1,5 +1,6 @@ /* - * PicoDrive + * PicoDrive MP3 driver for PSP + * * (C) notaz, 2007,2008 * * This work is licensed under the terms of MAME license. diff --git a/platform/psp/plat.c b/platform/psp/plat.c index b8a29e5f..53e13616 100644 --- a/platform/psp/plat.c +++ b/platform/psp/plat.c @@ -1,7 +1,7 @@ /* * Platform interface functions for PSP picodrive frontend * - * (C) 2020 kub + * (C) 2020 irixxxx */ #include #include diff --git a/tools/release.sh b/tools/release.sh index 26b79148..7672cc33 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -1,5 +1,7 @@ #! /bin/bash # +# (C) irixxxx 2021-2024 +# # picodrive release build script # # creates builds for the supported platforms in the release directory -- 2.39.2