mirror of https://github.com/PrimeDecomp/prime.git
Separate stack size increase and comment to make clearer
This commit is contained in:
parent
693bf2e7f9
commit
2c155bad48
|
@ -24,7 +24,7 @@ SECTIONS
|
|||
} > text
|
||||
|
||||
/* Stack size upped from the default of 65535 */
|
||||
_stack_addr = (_f_sbss2 + SIZEOF(.sbss2) + 68608 + 0x7) & ~0x7;
|
||||
_stack_addr = (_f_sbss2 + SIZEOF(.sbss2) + 65535 + 3073 /* Retro Addition */ + 0x7) & ~0x7;
|
||||
_stack_end = _f_sbss2 + SIZEOF(.sbss2);
|
||||
_db_stack_addr = (_stack_addr + 0x2000);
|
||||
_db_stack_end = _stack_addr;
|
||||
|
|
Loading…
Reference in New Issue