1
0
Fork 0
forked from len0rd/rockbox

Bad pool area allocation fixed

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

View file

@ -42,7 +42,8 @@ SECTIONS
.heap :
{
_poolstart = .;
_poolend = . + 0x20000;
. = . + 0x20000;
_poolend = .;
}
.mp3buf :

View file

@ -42,7 +42,8 @@ SECTIONS
.heap :
{
_poolstart = .;
_poolend = . + 0x20000;
. = . + 0x20000;
_poolend = .;
}
.mp3buf :