1
0
Fork 0
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:
Linus Nielsen Feltzing 2002-05-28 14:02:19 +00:00
parent 6cbe2a7301
commit d1d1d63810
2 changed files with 4 additions and 4 deletions

View file

@ -36,14 +36,14 @@ SECTIONS
.stack : .stack :
{ {
*(.stack) *(.stack)
. = . + 0x8000; . = 0x8000;
_stack = .; _stack = .;
} }
.heap : .heap :
{ {
_poolstart = .; _poolstart = .;
. = . + 0x20000; . = 0x20000;
_poolend = .; _poolend = .;
} }

View file

@ -36,14 +36,14 @@ SECTIONS
.stack : .stack :
{ {
*(.stack) *(.stack)
. = . + 0x8000; . = 0x8000;
_stack = .; _stack = .;
} }
.heap : .heap :
{ {
_poolstart = .; _poolstart = .;
. = . + 0x20000; . = 0x20000;
_poolend = .; _poolend = .;
} }