X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=libpcsxcore%2Fpsxinterpreter.h;h=746c8fe86dd4b7bda11840cbb1ed9d1ffe725c24;hb=0f15c5bc5af3335d6445f1254d0ca546ba509c59;hp=b3652c0e1b3ae3855cd83f38ed996c89d10f8a9f;hpb=5b5680983b7b3dde95acfe42f58e748d9f7fe1cb;p=pcsx_rearmed.git diff --git a/libpcsxcore/psxinterpreter.h b/libpcsxcore/psxinterpreter.h index b3652c0e..746c8fe8 100644 --- a/libpcsxcore/psxinterpreter.h +++ b/libpcsxcore/psxinterpreter.h @@ -1,6 +1,9 @@ #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 intApplyConfig(); @@ -9,6 +12,6 @@ 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__