mirror of https://github.com/PCSX2/pcsx2.git
Core: Remove unused code
This commit is contained in:
parent
44728be719
commit
26561261bc
17
pcsx2/Hw.h
17
pcsx2/Hw.h
|
@ -363,23 +363,6 @@ enum GSRegisterAddresses
|
||||||
GS_SIGLBLID = 0x12001080
|
GS_SIGLBLID = 0x12001080
|
||||||
};
|
};
|
||||||
|
|
||||||
// bleh, I'm graindead -- air
|
|
||||||
union tGS_SMODE2
|
|
||||||
{
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
u32 INT:1;
|
|
||||||
u32 FFMD:1;
|
|
||||||
u32 DPMS:2;
|
|
||||||
u32 _PAD2:28;
|
|
||||||
u32 _PAD3:32;
|
|
||||||
};
|
|
||||||
|
|
||||||
u64 _u64;
|
|
||||||
|
|
||||||
bool IsInterlaced() const { return INT; }
|
|
||||||
};
|
|
||||||
|
|
||||||
extern void hwReset();
|
extern void hwReset();
|
||||||
extern void hwShutdown();
|
extern void hwShutdown();
|
||||||
|
|
||||||
|
|
|
@ -25,8 +25,6 @@
|
||||||
#define int12_to_float(x) (float)((float)x * 0.000244140625f)
|
#define int12_to_float(x) (float)((float)x * 0.000244140625f)
|
||||||
#define int15_to_float(x) (float)((float)x * 0.000030517578125)
|
#define int15_to_float(x) (float)((float)x * 0.000030517578125)
|
||||||
|
|
||||||
#define MAC_Reset( VU ) VU->VI[REG_MAC_FLAG].UL = VU->VI[REG_MAC_FLAG].UL & (~0xFFFF)
|
|
||||||
|
|
||||||
struct _VURegsNum {
|
struct _VURegsNum {
|
||||||
u8 pipe; // if 0xff, COP2
|
u8 pipe; // if 0xff, COP2
|
||||||
u8 VFwrite;
|
u8 VFwrite;
|
||||||
|
|
|
@ -60,10 +60,6 @@ extern bool s_nBlockInterlocked; // Current block has VU0 interlocking
|
||||||
recBranchCall(Interp::f); \
|
recBranchCall(Interp::f); \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Used to clear recompiled code blocks during memory/dma write operations.
|
|
||||||
u32 recClearMem(u32 pc);
|
|
||||||
u32 REC_CLEARM(u32 mem);
|
|
||||||
extern bool g_recompilingDelaySlot;
|
extern bool g_recompilingDelaySlot;
|
||||||
|
|
||||||
// used when processing branches
|
// used when processing branches
|
||||||
|
@ -134,8 +130,6 @@ void _flushEEreg(int reg, bool clear = false);
|
||||||
// allocates memory on the instruction size and returns the pointer
|
// allocates memory on the instruction size and returns the pointer
|
||||||
u32* recGetImm64(u32 hi, u32 lo);
|
u32* recGetImm64(u32 hi, u32 lo);
|
||||||
|
|
||||||
void _vuRegsCOP22(VURegs* VU, _VURegsNum* VUregsn);
|
|
||||||
|
|
||||||
//////////////////////////////////////
|
//////////////////////////////////////
|
||||||
// Templates for code recompilation //
|
// Templates for code recompilation //
|
||||||
//////////////////////////////////////
|
//////////////////////////////////////
|
||||||
|
|
|
@ -2221,7 +2221,6 @@ StartRecomp:
|
||||||
}
|
}
|
||||||
|
|
||||||
VU0.code = cpuRegs.code;
|
VU0.code = cpuRegs.code;
|
||||||
_vuRegsCOP22(&VU0, &g_pCurInstInfo->vuregs);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -610,9 +610,6 @@ void rec_C2UNK()
|
||||||
Console.Error("Cop2 bad opcode: %x", cpuRegs.code);
|
Console.Error("Cop2 bad opcode: %x", cpuRegs.code);
|
||||||
}
|
}
|
||||||
|
|
||||||
// This is called by EE Recs to setup sVU info, this isn't needed for mVU Macro (cottonvibes)
|
|
||||||
void _vuRegsCOP22(VURegs* VU, _VURegsNum* VUregsn) {}
|
|
||||||
|
|
||||||
// Recompilation
|
// Recompilation
|
||||||
void (*recCOP2t[32])() = {
|
void (*recCOP2t[32])() = {
|
||||||
rec_C2UNK, recQMFC2, recCFC2, rec_C2UNK, rec_C2UNK, recQMTC2, recCTC2, rec_C2UNK,
|
rec_C2UNK, recQMFC2, recCFC2, rec_C2UNK, rec_C2UNK, recQMTC2, recCTC2, rec_C2UNK,
|
||||||
|
|
Loading…
Reference in New Issue