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:
parent
f690971d67
commit
c7c81c6303
2 changed files with 4 additions and 2 deletions
|
|
@ -36,7 +36,8 @@ SECTIONS
|
|||
.stack :
|
||||
{
|
||||
*(.stack)
|
||||
_stack = . + 0x8000;
|
||||
. = . + 0x8000;
|
||||
_stack = .;
|
||||
}
|
||||
|
||||
.heap :
|
||||
|
|
|
|||
|
|
@ -36,7 +36,8 @@ SECTIONS
|
|||
.stack :
|
||||
{
|
||||
*(.stack)
|
||||
_stack = . + 0x8000;
|
||||
. = . + 0x8000;
|
||||
_stack = .;
|
||||
}
|
||||
|
||||
.heap :
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue