rockbox/flash/bootloader/bootloader.lds
Jens Arnold e13e318c37 Use the asm optimised UCL decompressor for the flash bootloader as well. Verified working on Player, Recorder v1, Ondio SP and Ondio FM.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18928 a1c6a512-1295-4272-9138-f99709370657
2008-10-30 00:17:45 +00:00

34 lines
412 B
Text

OUTPUT_FORMAT(elf32-sh)
MEMORY
{
/* the boot ROM uses IRAM at 400-430, stay away and start at 500 */
IRAM : ORIGIN = 0x0FFFF500, LENGTH = 0xA00
/* and leave some room for stack at the end */
}
SECTIONS
{
.startvector :
{
*(.startvector)
. = ALIGN(0x4);
} > IRAM
.text :
{
*(.text)
*(.icode)
. = ALIGN(0x4);
} > IRAM
.data :
{
*(.data)
} > IRAM
.bss :
{
*(.bss)
} > IRAM
}