1
// Copyright (c) 2012- PPSSPP Project.
3
// This program is free software: you can redistribute it and/or modify
4
// it under the terms of the GNU General Public License as published by
5
// the Free Software Foundation, version 2.0 or later versions.
7
// This program is distributed in the hope that it will be useful,
8
// but WITHOUT ANY WARRANTY; without even the implied warranty of
9
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
// GNU General Public License 2.0 for more details.
12
// A copy of the GPL 2.0 should have been included with the program.
13
// If not, see http://www.gnu.org/licenses/
15
// Official git repository and contact information can be found at
16
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
20
#include "Common/CommonTypes.h"
21
#include "Core/MIPS/MIPS.h"
27
void Dis_Unknown(MIPSOpcode op, char *out);
28
void Dis_Unimpl(MIPSOpcode op, char *out);
29
void Dis_Syscall(MIPSOpcode op, char *out);
31
void Dis_mxc1(MIPSOpcode op, char *out);
32
void Dis_addi(MIPSOpcode op, char *out);
33
void Dis_addu(MIPSOpcode op, char *out);
34
void Dis_RelBranch2(MIPSOpcode op, char *out);
35
void Dis_RelBranch(MIPSOpcode op, char *out);
36
void Dis_Generic(MIPSOpcode op, char *out);
37
void Dis_Cache(MIPSOpcode op, char *out);
38
void Dis_IType(MIPSOpcode op, char *out);
39
void Dis_IType1(MIPSOpcode op, char *out);
40
void Dis_ITypeMem(MIPSOpcode op, char *out);
41
void Dis_RType2(MIPSOpcode op, char *out);
42
void Dis_RType3(MIPSOpcode op, char *out);
43
void Dis_MulDivType(MIPSOpcode op, char *out);
44
void Dis_ShiftType(MIPSOpcode op, char *out);
45
void Dis_VarShiftType(MIPSOpcode op, char *out);
46
void Dis_FPU3op(MIPSOpcode op, char *out);
47
void Dis_FPU2op(MIPSOpcode op, char *out);
48
void Dis_FPULS(MIPSOpcode op, char *out);
49
void Dis_FPUComp(MIPSOpcode op, char *out);
50
void Dis_FPUBranch(MIPSOpcode op, char *out);
51
void Dis_ori(MIPSOpcode op, char *out);
52
void Dis_Special3(MIPSOpcode op, char *out);
54
void Dis_ToHiloTransfer(MIPSOpcode op, char *out);
55
void Dis_FromHiloTransfer(MIPSOpcode op, char *out);
56
void Dis_JumpType(MIPSOpcode op, char *out);
57
void Dis_JumpRegType(MIPSOpcode op, char *out);
59
void Dis_Allegrex(MIPSOpcode op, char *out);
60
void Dis_Allegrex2(MIPSOpcode op, char *out);
62
void Dis_Emuhack(MIPSOpcode op, char *out);