rockbox/gdb/linker.cfg
Linus Nielsen Feltzing 8ee52130f0 Fixed the mess with all the different stacks
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@204 a1c6a512-1295-4272-9138-f99709370657
2002-04-23 21:59:20 +00:00

28 lines
364 B
INI

ENTRY(_start)
OUTPUT_FORMAT(elf32-sh)
SECTIONS
{
.vectors 0x09000000 :
{
*(.vectors);
. = ALIGN(0x200);
start.o(.text)
*(.rodata)
}
.text :
{
*(.text)
}
.bss :
{
_stack = . + 0x1000;
_stub_stack = _stack + 0x1000;
}
.pad 0x0900C800 :
{
LONG(0);
}
}