mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Merge pull request #1896 from johnwchadwick/asmcommon-larger-codespace
Increase AsmCommon code space to fix crashes on Linux systems.
This commit is contained in:
@ -32,7 +32,9 @@ public:
|
|||||||
void Init(u8* stack_top)
|
void Init(u8* stack_top)
|
||||||
{
|
{
|
||||||
m_stack_top = stack_top;
|
m_stack_top = stack_top;
|
||||||
AllocCodeSpace(8192);
|
// NOTE: When making large additions to the AsmCommon code, you might
|
||||||
|
// want to ensure this number is big enough.
|
||||||
|
AllocCodeSpace(16384);
|
||||||
Generate();
|
Generate();
|
||||||
WriteProtect();
|
WriteProtect();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user