diff options
author | 2015-05-13 11:33:24 +0200 | |
---|---|---|
committer | 2015-05-13 11:33:24 +0200 | |
commit | 9f1788f65c243208e1ea386bc476dfb71f89bcb7 (patch) | |
tree | 476b446c352f7c27e1aab972cf5eee7fe94e77b2 /src/emu/cpu/rsp | |
parent | 475e90ca8b6cc97c1d021fdeab23a05ba9b93a53 (diff) |
Sorted out cpu cores (nw)
Diffstat (limited to 'src/emu/cpu/rsp')
-rw-r--r-- | src/emu/cpu/rsp/rsp.c | 4 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rsp.h | 8 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rsp_dasm.c | 4 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rspcp2.c | 4 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rspcp2.h | 8 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rspcp2d.c | 4 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rspcp2d.h | 8 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rspcp2s.c | 4 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rspcp2s.h | 8 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rspdiv.h | 4 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rspdrc.c | 4 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rspfe.c | 8 | ||||
-rw-r--r-- | src/emu/cpu/rsp/rspfe.h | 8 |
13 files changed, 18 insertions, 58 deletions
diff --git a/src/emu/cpu/rsp/rsp.c b/src/emu/cpu/rsp/rsp.c index 187d4d1ca69..1bb36af0612 100644 --- a/src/emu/cpu/rsp/rsp.c +++ b/src/emu/cpu/rsp/rsp.c @@ -1,5 +1,5 @@ -// license:??? -// copyright-holders:??? +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Ryan Holtz /* Nintendo/SGI Reality Signal Processor (RSP) emulator diff --git a/src/emu/cpu/rsp/rsp.h b/src/emu/cpu/rsp/rsp.h index 83d19accee1..564f1652109 100644 --- a/src/emu/cpu/rsp/rsp.h +++ b/src/emu/cpu/rsp/rsp.h @@ -1,5 +1,5 @@ -// license:??? -// copyright-holders:??? +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Ryan Holtz /*************************************************************************** rsp.h @@ -7,10 +7,6 @@ Interface file for the universal machine language-based Reality Signal Processor (RSP) emulator. - Copyright the MESS team - Released for general non-commercial use under the MAME license - Visit http://mamedev.org for licensing and usage restrictions. - ***************************************************************************/ #pragma once diff --git a/src/emu/cpu/rsp/rsp_dasm.c b/src/emu/cpu/rsp/rsp_dasm.c index 1b2458fd633..2f455567588 100644 --- a/src/emu/cpu/rsp/rsp_dasm.c +++ b/src/emu/cpu/rsp/rsp_dasm.c @@ -1,5 +1,5 @@ -// license:??? -// copyright-holders:??? +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Ryan Holtz /* Nintendo/SGI RSP Disassembler diff --git a/src/emu/cpu/rsp/rspcp2.c b/src/emu/cpu/rsp/rspcp2.c index 7492e9c2596..8371583c948 100644 --- a/src/emu/cpu/rsp/rspcp2.c +++ b/src/emu/cpu/rsp/rspcp2.c @@ -7,10 +7,6 @@ Universal machine language-based Nintendo/SGI RSP COP2 emulator. Written by Harmony of the MESS team. - Copyright the MESS team. - Released for general non-commercial use under the MAME license - Visit http://mamedev.org for licensing and usage restrictions. - ***************************************************************************/ #include "emu.h" diff --git a/src/emu/cpu/rsp/rspcp2.h b/src/emu/cpu/rsp/rspcp2.h index 20a028c53d2..15857bd687c 100644 --- a/src/emu/cpu/rsp/rspcp2.h +++ b/src/emu/cpu/rsp/rspcp2.h @@ -1,15 +1,11 @@ -// license:??? -// copyright-holders:??? +// license:BSD-3-Clause +// copyright-holders:Ryan Holtz /*************************************************************************** rspcp2.h Interface file for Reality Signal Processor (RSP) vector extensions. - Copyright the MESS team - Released for general non-commercial use under the MAME license - Visit http://mamedev.org for licensing and usage restrictions. - ***************************************************************************/ #pragma once diff --git a/src/emu/cpu/rsp/rspcp2d.c b/src/emu/cpu/rsp/rspcp2d.c index f24aa02c991..3a5ca09b9ee 100644 --- a/src/emu/cpu/rsp/rspcp2d.c +++ b/src/emu/cpu/rsp/rspcp2d.c @@ -7,10 +7,6 @@ Universal machine language-based Nintendo/SGI RSP COP2 emulator. Written by Harmony of the MESS team. - Copyright the MESS team. - Released for general non-commercial use under the MAME license - Visit http://mamedev.org for licensing and usage restrictions. - ***************************************************************************/ #include "emu.h" diff --git a/src/emu/cpu/rsp/rspcp2d.h b/src/emu/cpu/rsp/rspcp2d.h index 067bb1a357d..d56e04e7532 100644 --- a/src/emu/cpu/rsp/rspcp2d.h +++ b/src/emu/cpu/rsp/rspcp2d.h @@ -1,5 +1,5 @@ -// license:??? -// copyright-holders:??? +// license:BSD-3-Clause +// copyright-holders:Ryan Holtz /*************************************************************************** rspcp2d.h @@ -7,10 +7,6 @@ Interface file for Reality Signal Processor (RSP) vector extensions using Universal Machine Language (UML) dynamic recompilation. - Copyright the MESS team - Released for general non-commercial use under the MAME license - Visit http://mamedev.org for licensing and usage restrictions. - ***************************************************************************/ #pragma once diff --git a/src/emu/cpu/rsp/rspcp2s.c b/src/emu/cpu/rsp/rspcp2s.c index 937a3e5590d..4f2c2b18fa9 100644 --- a/src/emu/cpu/rsp/rspcp2s.c +++ b/src/emu/cpu/rsp/rspcp2s.c @@ -8,10 +8,6 @@ SSSE3 SIMD optimizations. Written by Harmony of the MESS team. - Copyright the MESS team. - Released for general non-commercial use under the MAME license - Visit http://mamedev.org for licensing and usage restrictions. - ***************************************************************************/ #include "emu.h" diff --git a/src/emu/cpu/rsp/rspcp2s.h b/src/emu/cpu/rsp/rspcp2s.h index fd5a5b1c99f..b9ad85fbf54 100644 --- a/src/emu/cpu/rsp/rspcp2s.h +++ b/src/emu/cpu/rsp/rspcp2s.h @@ -1,5 +1,5 @@ -// license:??? -// copyright-holders:??? +// license:BSD-3-Clause +// copyright-holders:Ryan Holtz /*************************************************************************** rspcp2s.h @@ -7,10 +7,6 @@ Interface file for Reality Signal Processor (RSP) vector extensions using SSSE3 SIMD acceleration. - Copyright the MESS team - Released for general non-commercial use under the MAME license - Visit http://mamedev.org for licensing and usage restrictions. - ***************************************************************************/ #pragma once diff --git a/src/emu/cpu/rsp/rspdiv.h b/src/emu/cpu/rsp/rspdiv.h index 4507c85f37f..67e4afacd01 100644 --- a/src/emu/cpu/rsp/rspdiv.h +++ b/src/emu/cpu/rsp/rspdiv.h @@ -1,5 +1,5 @@ -// license:??? -// copyright-holders:??? +// license:BSD-3-Clause +// copyright-holders:Ryan Holtz static const UINT16 rsp_divtable[1024] = { 0xffff, diff --git a/src/emu/cpu/rsp/rspdrc.c b/src/emu/cpu/rsp/rspdrc.c index 544ac6e6a8e..e30bad904ec 100644 --- a/src/emu/cpu/rsp/rspdrc.c +++ b/src/emu/cpu/rsp/rspdrc.c @@ -9,10 +9,6 @@ SIMD versions of vector multiplication opcodes provided by Marathon Man of the CEN64 team. - Copyright the MESS team. - Released for general non-commercial use under the MAME license - Visit http://mamedev.org for licensing and usage restrictions. - **************************************************************************** Future improvements/changes: diff --git a/src/emu/cpu/rsp/rspfe.c b/src/emu/cpu/rsp/rspfe.c index b8ac8c5e67c..96291bd0d65 100644 --- a/src/emu/cpu/rsp/rspfe.c +++ b/src/emu/cpu/rsp/rspfe.c @@ -1,15 +1,11 @@ -// license:??? -// copyright-holders:??? +// license:BSD-3-Clause +// copyright-holders:Ryan Holtz /*************************************************************************** rspfe.c Front-end for RSP recompiler - Copyright the MESS team - Released for general non-commercial use under the MAME license - Visit http://mamedev.org for licensing and usage restrictions. - ***************************************************************************/ #include "emu.h" diff --git a/src/emu/cpu/rsp/rspfe.h b/src/emu/cpu/rsp/rspfe.h index 19d7f9cfda5..bdfd7a83fb7 100644 --- a/src/emu/cpu/rsp/rspfe.h +++ b/src/emu/cpu/rsp/rspfe.h @@ -1,15 +1,11 @@ -// license:??? -// copyright-holders:??? +// license:BSD-3-Clause +// copyright-holders:Ryan Holtz /*************************************************************************** rspfe.h Front-end for RSP recompiler - Copyright the MESS team - Released for general non-commercial use under the MAME license - Visit http://mamedev.org for licensing and usage restrictions. - ***************************************************************************/ #pragma once |