1
0
Fork 0
forked from len0rd/rockbox

Stack allocation lameness fixed

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@730 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-05-27 09:24:38 +00:00
parent f690971d67
commit c7c81c6303
2 changed files with 4 additions and 2 deletions

View file

@ -36,7 +36,8 @@ SECTIONS
.stack :
{
*(.stack)
_stack = . + 0x8000;
. = . + 0x8000;
_stack = .;
}
.heap :

View file

@ -36,7 +36,8 @@ SECTIONS
.stack :
{
*(.stack)
_stack = . + 0x8000;
. = . + 0x8000;
_stack = .;
}
.heap :