Separate stack size increase and comment to make clearer

Former-commit-id: 2c155bad48
This commit is contained in:
Phillip Stephens 2022-10-13 08:36:07 -07:00
parent 9ca9752d72
commit b2ac6ffefc
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ SECTIONS
} > text } > text
/* Stack size upped from the default of 65535 */ /* 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); _stack_end = _f_sbss2 + SIZEOF(.sbss2);
_db_stack_addr = (_stack_addr + 0x2000); _db_stack_addr = (_stack_addr + 0x2000);
_db_stack_end = _stack_addr; _db_stack_end = _stack_addr;