JIT:
- Enable MAPPED_JIT_FUNCS for the Cocoa port. Cocoa Port: - Change the default JIT Block Size to 12. - Update some tooltips for the CPU Emulation Engine controls. Cocoa Port (OpenEmu Plug-in): - Make CommonSettings.jit_max_block_size=12 the default setting.
This commit is contained in:
parent
7d78f85f4c
commit
d18a0e1782
|
@ -31,7 +31,7 @@ void arm_jit_close();
|
||||||
void arm_jit_sync();
|
void arm_jit_sync();
|
||||||
template<int PROCNUM> u32 arm_jit_compile();
|
template<int PROCNUM> u32 arm_jit_compile();
|
||||||
|
|
||||||
#ifdef _WINDOWS
|
#if defined(_WINDOWS) || defined(DESMUME_COCOA)
|
||||||
#define MAPPED_JIT_FUNCS
|
#define MAPPED_JIT_FUNCS
|
||||||
#endif
|
#endif
|
||||||
#ifdef MAPPED_JIT_FUNCS
|
#ifdef MAPPED_JIT_FUNCS
|
||||||
|
|
Binary file not shown.
|
@ -82,7 +82,7 @@
|
||||||
|
|
||||||
// Set up the emulation core
|
// Set up the emulation core
|
||||||
CommonSettings.advanced_timing = true;
|
CommonSettings.advanced_timing = true;
|
||||||
CommonSettings.jit_max_block_size = 15;
|
CommonSettings.jit_max_block_size = 12;
|
||||||
CommonSettings.use_jit = true;
|
CommonSettings.use_jit = true;
|
||||||
[CocoaDSCore startupCore];
|
[CocoaDSCore startupCore];
|
||||||
|
|
||||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue