copyright: remove the special copyright note. Only impact trivial code (enum and register definition)

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5241 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gregory.hainaut 2012-05-29 06:59:33 +00:00
parent a2908b4fed
commit cfeb7a5b0a
2 changed files with 0 additions and 34 deletions

View File

@ -17,11 +17,6 @@
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* Special Notes:
*
* Register definitions and most of the enums originate from sps2dev-0.4.0
* Copyright (C) 2002 Terratron Technologies Inc. All Rights Reserved.
*
*/
#pragma once
@ -45,10 +40,6 @@
#pragma pack(push, 1)
//
// sps2registers.h
//
enum GS_PRIM
{
GS_POINTLIST = 0,
@ -225,10 +216,6 @@ enum GS_AFAIL
AFAIL_RGB_ONLY = 3,
};
//
// sps2regstructs.h
//
#define REG32(name) \
union name \
{ \
@ -507,10 +494,6 @@ REG64_SET(GSReg)
GSRegSMODE2 SMODE2;
REG_SET_END
//
// sps2tags.h
//
//
// GIFTag

View File

@ -16,14 +16,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
// These enums & structures are copied from GSdx, which got them from sp2dev 0.4.0.
// sp2dev is Copyright (C) 2002 Terratron Technologies Inc. All Rights Reserved.
// http://window.terratron.com/~sosman/ps2linux/
//
// Gsdx is Copyright (C) 2007-2009 Gabest All Rights Reserved.
// http://www.gabest.org
//
#ifndef __REGISTERS_H__
#define __REGISTERS_H__
@ -578,15 +570,6 @@ REG64_SET(GSReg)
GSRegSMODE2 SMODE2;
REG_SET_END
//
// sps2tags.h
//
#define SET_GIF_REG(gifTag, iRegNo, uiValue) \
{((GIFTag*)&gifTag)->u64[1] |= (((uiValue) & 0xf) << ((iRegNo) << 2));}
#define GET_GIF_REG(tag, reg) \
(((tag).u32[2 + ((reg) >> 3)] >> (((reg) & 7) << 2)) & 0xf)
//
// GIFTag