mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-24 14:49:53 -06:00
jit: add compile option
This commit is contained in:
@ -52,7 +52,9 @@ public:
|
||||
}
|
||||
|
||||
virtual void Execute() = 0;
|
||||
#ifdef ENABLE_JIT
|
||||
virtual void ExecuteJIT() = 0;
|
||||
#endif
|
||||
|
||||
bool CheckCondition(u32 code)
|
||||
{
|
||||
@ -160,7 +162,9 @@ public:
|
||||
void DataAbort();
|
||||
|
||||
void Execute();
|
||||
#ifdef JIT_ENABLED
|
||||
void ExecuteJIT();
|
||||
#endif
|
||||
|
||||
// all code accesses are forced nonseq 32bit
|
||||
u32 CodeRead32(u32 addr, bool branch);
|
||||
@ -283,7 +287,9 @@ public:
|
||||
void JumpTo(u32 addr, bool restorecpsr = false);
|
||||
|
||||
void Execute();
|
||||
#ifdef JIT_ENABLED
|
||||
void ExecuteJIT();
|
||||
#endif
|
||||
|
||||
u16 CodeRead16(u32 addr)
|
||||
{
|
||||
|
Reference in New Issue
Block a user