mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 06:10:03 -06:00
fix build with JIT disabled and set default JIT maxblock size to 32
This commit is contained in:
@ -562,11 +562,15 @@ void ARMv5::CP15Write(u32 id, u32 val)
|
||||
|
||||
|
||||
case 0x750:
|
||||
#ifdef JIT_ENABLED
|
||||
ARMJIT::InvalidateAll();
|
||||
#endif
|
||||
ICacheInvalidateAll();
|
||||
return;
|
||||
case 0x751:
|
||||
#ifdef JIT_ENABLED
|
||||
ARMJIT::InvalidateByAddr(ARMJIT::TranslateAddr<0>(val));
|
||||
#endif
|
||||
ICacheInvalidateByAddr(val);
|
||||
return;
|
||||
case 0x752:
|
||||
|
Reference in New Issue
Block a user