2012-11-01 15:19:01 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../../Globals.h"
|
|
|
|
|
|
|
|
u32 MIPS_GetNextPC();
|
|
|
|
void MIPS_ClearDelaySlot();
|
|
|
|
int MIPS_SingleStep();
|
|
|
|
|
|
|
|
namespace MIPSInt
|
|
|
|
{
|
|
|
|
void Int_SV(u32 op);
|
|
|
|
void Int_SVQ(u32 op);
|
|
|
|
void Int_Mftv(u32 op);
|
|
|
|
void Int_MatrixSet(u32 op);
|
|
|
|
void Int_VecDo3(u32 op);
|
|
|
|
void Int_Vcst(u32 op);
|
|
|
|
void Int_VMatrixInit(u32 op);
|
|
|
|
void Int_VVectorInit(u32 op);
|
|
|
|
void Int_Vmmul(u32 op);
|
2012-11-06 19:56:19 +00:00
|
|
|
void Int_Vmscl(u32 op);
|
2012-11-01 15:19:01 +00:00
|
|
|
void Int_Vmmov(u32 op);
|
|
|
|
void Int_VV2Op(u32 op);
|
|
|
|
void Int_Vrot(u32 op);
|
|
|
|
void Int_VDot(u32 op);
|
2012-12-18 21:54:08 +00:00
|
|
|
void Int_VHdp(u32 op);
|
2012-11-06 19:56:19 +00:00
|
|
|
void Int_Vavg(u32 op);
|
|
|
|
void Int_Vfad(u32 op);
|
|
|
|
void Int_Vocp(u32 op);
|
2012-12-21 03:05:53 +00:00
|
|
|
void Int_Vsocp(u32 op);
|
2012-11-01 15:19:01 +00:00
|
|
|
void Int_Vsgn(u32 op);
|
|
|
|
void Int_Vtfm(u32 op);
|
|
|
|
void Int_Viim(u32 op);
|
|
|
|
void Int_VScl(u32 op);
|
|
|
|
void Int_Vidt(u32 op);
|
|
|
|
void Int_Vcmp(u32 op);
|
2012-11-15 12:18:44 +00:00
|
|
|
void Int_Vminmax(u32 op);
|
2012-12-20 13:39:10 +00:00
|
|
|
void Int_Vscmp(u32 op);
|
2012-11-01 15:19:01 +00:00
|
|
|
void Int_Vcrs(u32 op);
|
2012-12-20 13:11:21 +00:00
|
|
|
void Int_Vdet(u32 op);
|
2012-11-01 15:19:01 +00:00
|
|
|
void Int_Vcmov(u32 op);
|
|
|
|
void Int_CrossQuat(u32 op);
|
|
|
|
void Int_VPFX(u32 op);
|
|
|
|
void Int_Vflush(u32 op);
|
|
|
|
void Int_Vbfy(u32 op);
|
2012-12-21 06:30:34 +00:00
|
|
|
void Int_Vsrt1(u32 op);
|
|
|
|
void Int_Vsrt2(u32 op);
|
|
|
|
void Int_Vsrt3(u32 op);
|
|
|
|
void Int_Vsrt4(u32 op);
|
2012-11-01 15:19:01 +00:00
|
|
|
void Int_Vf2i(u32 op);
|
|
|
|
void Int_Vi2f(u32 op);
|
|
|
|
void Int_Vi2x(u32 op);
|
2012-11-11 17:44:20 +00:00
|
|
|
void Int_Vx2i(u32 op);
|
2012-11-01 15:19:01 +00:00
|
|
|
void Int_VBranch(u32 op);
|
2012-11-06 19:56:19 +00:00
|
|
|
void Int_Vrnds(u32 op);
|
|
|
|
void Int_VrndX(u32 op);
|
|
|
|
void Int_ColorConv(u32 op);
|
2012-11-11 21:38:19 +00:00
|
|
|
void Int_Vh2f(u32 op);
|
|
|
|
void Int_Vf2h(u32 op);
|
2012-11-22 17:12:56 +00:00
|
|
|
void Int_Vsge(u32 op);
|
|
|
|
void Int_Vslt(u32 op);
|
2012-11-22 19:14:24 +00:00
|
|
|
void Int_Vmfvc(u32 op);
|
|
|
|
void Int_Vmtvc(u32 op);
|
2013-02-02 22:47:00 +00:00
|
|
|
void Int_Vlgb(u32 op);
|
|
|
|
void Int_Vwbn(u32 op);
|
|
|
|
void Int_Vsbn(u32 op);
|
|
|
|
void Int_Vsbz(u32 op);
|
|
|
|
}
|