[Project64] Remove DSRL32 and DSRA32 from 32bit interpter
This commit is contained in:
parent
0b909905d0
commit
4c0b8d154e
|
@ -1190,16 +1190,6 @@ void R4300iOp32::SPECIAL_TEQ()
|
|||
}
|
||||
}
|
||||
|
||||
void R4300iOp32::SPECIAL_DSRL32()
|
||||
{
|
||||
_GPR[m_Opcode.rd].UW[0] = (uint32_t)(_GPR[m_Opcode.rt].UDW >> (m_Opcode.sa + 32));
|
||||
}
|
||||
|
||||
void R4300iOp32::SPECIAL_DSRA32()
|
||||
{
|
||||
_GPR[m_Opcode.rd].W[0] = (int32_t)(_GPR[m_Opcode.rt].DW >> (m_Opcode.sa + 32));
|
||||
}
|
||||
|
||||
/********************** R4300i OpCodes: RegImm **********************/
|
||||
void R4300iOp32::REGIMM_BLTZ()
|
||||
{
|
||||
|
|
|
@ -62,8 +62,6 @@ public:
|
|||
static void SPECIAL_SLT();
|
||||
static void SPECIAL_SLTU();
|
||||
static void SPECIAL_TEQ();
|
||||
static void SPECIAL_DSRL32();
|
||||
static void SPECIAL_DSRA32();
|
||||
|
||||
/********************** R4300i OpCodes: RegImm **********************/
|
||||
static void REGIMM_BLTZ();
|
||||
|
|
Loading…
Reference in New Issue