rockbox/firmware/app.lds
Daniel Stenberg e93823bc0f remove padding to make it link, we're now bigger than least required!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1026 a1c6a512-1295-4272-9138-f99709370657
2002-06-17 06:24:22 +00:00

61 lines
702 B
Text

ENTRY(start)
OUTPUT_FORMAT(elf32-sh)
INPUT(crt0.o)
SECTIONS
{
.vectors 0x09000000 :
{
*(.resetvectors);
*(.vectors);
. = ALIGN(0x200);
*(.init.text)
}
.text :
{
*(.text)
}
.data :
{
*(.data)
}
.rodata :
{
*(.rodata)
}
.bss :
{
_edata = .;
*(.bss)
*(COMMON)
_end = .;
}
.stack :
{
*(.stack)
. = 0x8000;
_stack = .;
}
.heap :
{
_poolstart = .;
. = 0x20000;
_poolend = .;
}
.mp3buf :
{
_mp3buf = .;
}
.mp3end 0x09200000 :
{
_mp3end = .;
}
}