Separate stack size increase and comment to make clearer

This commit is contained in:
Phillip Stephens 2022-10-13 08:36:07 -07:00
parent 693bf2e7f9
commit 2c155bad48
1 changed files with 1 additions and 1 deletions

View File

@ -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;