Increase stack size to 32K on large memory devices (i.e. iRiver). CODEC stack usage needs to be investigated, and then this can possibly be reduced

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5959 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2005-02-15 22:16:47 +00:00
parent 1ec83e2069
commit b9ea50796d

View file

@ -186,7 +186,11 @@ SECTIONS
*(.stack)
_stackbegin = . - SIZEOF(.iram);
stackbegin = . - SIZEOF(.iram);
#if MEMORYSIZE >= 32
. += 0x8000 - SIZEOF(.iram);
#else
. += 0x2000 - SIZEOF(.iram);
#endif
_stackend = .;
stackend = .;
} > DRAM