Disable debug mode

- Also add stub for RFE operation
This commit is contained in:
iCatButler 2016-06-29 08:54:46 +01:00
parent 42176205ce
commit 6b78a14b0e
4 changed files with 7 additions and 2 deletions

View File

@ -793,4 +793,7 @@ void PGXP_CP0_CTC0(u32 instr, u32 rtVal)
// CP0[Rd] = CPU[Rt]
Validate(&CPU_reg[rt(instr)], rtVal);
CP0_reg[rd(instr)] = CPU_reg[rt(instr)];
}
}
void PGXP_CP0_RFE(u32 instr)
{}

View File

@ -116,5 +116,6 @@ void PGXP_CP0_MFC0(u32 instr, u32 rdVal);
void PGXP_CP0_MTC0(u32 instr, u32 rtVal);
void PGXP_CP0_CFC0(u32 instr, u32 rdVal);
void PGXP_CP0_CTC0(u32 instr, u32 rtVal);
void PGXP_CP0_RFE(u32 instr);
#endif //_PGXP_CPU_H_

View File

@ -30,7 +30,7 @@
#include "psxcommon.h"
#define PGXP_CPU_DEBUG
//#define PGXP_CPU_DEBUG
// Debug wrappers
void PGXP_psxTraceOp(u32 code);

View File

@ -347,6 +347,7 @@ void psxDelayTest(int reg, u32 bpc);
void psxTestSWInts();
void psxJumpTest();
void intSetPGXPMode(u32 pgxpMode);
void psxSetPGXPMode(u32 pgxpMode);
#ifdef __cplusplus