forked from len0rd/rockbox
Better stack and pool allocation
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@763 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6cbe2a7301
commit
d1d1d63810
2 changed files with 4 additions and 4 deletions
|
@ -36,14 +36,14 @@ SECTIONS
|
|||
.stack :
|
||||
{
|
||||
*(.stack)
|
||||
. = . + 0x8000;
|
||||
. = 0x8000;
|
||||
_stack = .;
|
||||
}
|
||||
|
||||
.heap :
|
||||
{
|
||||
_poolstart = .;
|
||||
. = . + 0x20000;
|
||||
. = 0x20000;
|
||||
_poolend = .;
|
||||
}
|
||||
|
||||
|
|
|
@ -36,14 +36,14 @@ SECTIONS
|
|||
.stack :
|
||||
{
|
||||
*(.stack)
|
||||
. = . + 0x8000;
|
||||
. = 0x8000;
|
||||
_stack = .;
|
||||
}
|
||||
|
||||
.heap :
|
||||
{
|
||||
_poolstart = .;
|
||||
. = . + 0x20000;
|
||||
. = 0x20000;
|
||||
_poolend = .;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue