mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
27 lines
326 B
INI
27 lines
326 B
INI
ENTRY(_start)
|
|
OUTPUT_FORMAT(elf32-sh)
|
|
SECTIONS
|
|
{
|
|
.vectors 0x09000000 :
|
|
{
|
|
*(.vectors);
|
|
. = ALIGN(0x200);
|
|
start.o(.text)
|
|
*(.rodata)
|
|
}
|
|
|
|
.bss :
|
|
{
|
|
_stack = . + 0x1000;
|
|
}
|
|
|
|
.text :
|
|
{
|
|
*(.text)
|
|
}
|
|
|
|
.pad 0x0900C800 :
|
|
{
|
|
LONG(0);
|
|
}
|
|
}
|