mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-04 23:07:46 -04:00
add/update copyright notices for substantially changed files
This commit is contained in:
parent
2f0c5639c1
commit
7bf552b5fa
56 changed files with 76 additions and 33 deletions
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* DRC host disassembler interface for MIPS/ARM32 for use without binutils
|
||||
* (C) kub, 2018,2019
|
||||
* (C) irixxxx, 2018-2021
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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 <derkub@gmail.com>
|
||||
* (C) 2021 irixxxx
|
||||
*
|
||||
* This work is licensed under the terms of any of these licenses
|
||||
* (at your option):
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
* 160x144 -> 320x240: GG, PAR 6:5, scaling to 320x240 for DAR 4:3
|
||||
*
|
||||
*
|
||||
* (C) 2021 kub <derkub@gmail.com>
|
||||
* (C) 2021 irixxxx
|
||||
*
|
||||
* This work is licensed under the terms of any of these licenses
|
||||
* (at your option):
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
* PicoDrive PS2 frontend
|
||||
*
|
||||
* (C) fjtrujy,irixxxx, 2024
|
||||
*/
|
||||
|
||||
#include <stddef.h>
|
||||
#include <malloc.h>
|
||||
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
* PicoDrive input driver for PS2
|
||||
*
|
||||
* (C) fjtrujy,irixxxx 2024
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
* PicoDrive platform interface for PS2
|
||||
*
|
||||
* (C) fjtrujy,irixxxx 2024
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/*
|
||||
* PicoDrive
|
||||
* PicoDrive PSP frontend
|
||||
*
|
||||
* (C) notaz, 2007,2008
|
||||
* (C) irixxxx, 2022-2024
|
||||
*
|
||||
|
|
|
@ -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):
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/*
|
||||
* PicoDrive
|
||||
* PicoDrive MP3 driver for PSP
|
||||
*
|
||||
* (C) notaz, 2007,2008
|
||||
*
|
||||
* This work is licensed under the terms of MAME license.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* Platform interface functions for PSP picodrive frontend
|
||||
*
|
||||
* (C) 2020 kub
|
||||
* (C) 2020 irixxxx
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue