Compare commits
12 commits
902369a252
...
927328b2fb
Author | SHA1 | Date | |
---|---|---|---|
927328b2fb | |||
2840ddc398 | |||
5741ed5164 | |||
4b99f72060 | |||
f26bde2f18 | |||
bcb10bc818 | |||
15fe07b85e | |||
456ad8b8ba | |||
2d4bdf30df | |||
fe737b7cfe | |||
445d0b5cb7 | |||
9fae048a5a |
2 changed files with 2 additions and 2 deletions
|
@ -215,7 +215,7 @@ std::shared_ptr<Dynarmic::A32::Jit> ArmDynarmic32::MakeJit(Common::PageTable* pa
|
|||
#ifdef ARCHITECTURE_arm64
|
||||
config.code_cache_size = std::uint32_t(128_MiB);
|
||||
#else
|
||||
config.code_cache_size = std::uint32_t(2_GiB);
|
||||
config.code_cache_size = std::uint32_t(512_MiB);
|
||||
#endif
|
||||
|
||||
// Allow memory fault handling to work
|
||||
|
|
|
@ -273,7 +273,7 @@ std::shared_ptr<Dynarmic::A64::Jit> ArmDynarmic64::MakeJit(Common::PageTable* pa
|
|||
#ifdef ARCHITECTURE_arm64
|
||||
config.code_cache_size = std::uint32_t(128_MiB);
|
||||
#else
|
||||
config.code_cache_size = std::uint32_t(2_GiB);
|
||||
config.code_cache_size = std::uint32_t(512_MiB);
|
||||
#endif
|
||||
|
||||
// Allow memory fault handling to work
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue