X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=libpcsxcore%2Fpsxinterpreter.h;h=2c3f3943bbf0cf3f2748158f0a708abb1ed161a7;hb=HEAD;hp=b3652c0e1b3ae3855cd83f38ed996c89d10f8a9f;hpb=7a8d521fba9c86ae7b51369ce061bf63112b745f;p=pcsx_rearmed.git diff --git a/libpcsxcore/psxinterpreter.h b/libpcsxcore/psxinterpreter.h index b3652c0e..2c3f3943 100644 --- a/libpcsxcore/psxinterpreter.h +++ b/libpcsxcore/psxinterpreter.h @@ -1,14 +1,17 @@ #ifndef __PSXINTERPRETER_H__ #define __PSXINTERPRETER_H__ +// get an opcode without triggering exceptions or affecting cache +u32 intFakeFetch(u32 pc); + // called by "new_dynarec" -void execI(); +void execI(psxRegisters *regs); void intApplyConfig(); void MTC0(psxRegisters *regs_, int reg, u32 val); void gteNULL(struct psxCP2Regs *regs); extern void (*psxCP2[64])(struct psxCP2Regs *regs); // called by lightrec -void intExecuteBlock(); +void intExecuteBlock(enum blockExecCaller caller); #endif // __PSXINTERPRETER_H__