X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=libpcsxcore%2Fpsxinterpreter.h;h=2c3f3943bbf0cf3f2748158f0a708abb1ed161a7;hb=1dc68512954094c1cd7bcc075e966925e3808108;hp=1c97689f18ef39865f7b1130ad798b367c71db4e;hpb=3968e69e7fa8f9cb0d44ac79477d5929b9649271;p=pcsx_rearmed.git diff --git a/libpcsxcore/psxinterpreter.h b/libpcsxcore/psxinterpreter.h index 1c97689f..2c3f3943 100644 --- a/libpcsxcore/psxinterpreter.h +++ b/libpcsxcore/psxinterpreter.h @@ -1,4 +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 psxNULL(); +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(enum blockExecCaller caller); + +#endif // __PSXINTERPRETER_H__