mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
23 lines
276 B
Text
23 lines
276 B
Text
ENTRY(start)
|
|
OUTPUT_FORMAT(elf32-sh)
|
|
SECTIONS
|
|
{
|
|
.text 0x09018000 :
|
|
{
|
|
*(.rodata)
|
|
*(.text)
|
|
}
|
|
|
|
.data :
|
|
{
|
|
*(.data)
|
|
}
|
|
|
|
.bss :
|
|
{
|
|
*(.bss)
|
|
_end = . + 0x8000;
|
|
_stack = . + 0x9000;
|
|
_edata = .;
|
|
}
|
|
}
|