dreamcast/sg_ini.lds

29 lines
566 B
Plaintext

OUTPUT_FORMAT("elf32-shl", "elf32-shl", "elf32-shl")
MEMORY
{
systemid (arx) : ORIGIN = 0x8c008000, LENGTH = 0x100
toc (arx) : ORIGIN = 0x8c008100, LENGTH = 0x200
sg_sec (arx) : ORIGIN = 0x8c008300, LENGTH = 0x3400
sg_are (arx) : ORIGIN = 0x8c00b700, LENGTH = 0x100
sg_ini (arx) : ORIGIN = 0x8c00b800, LENGTH = 0x2800
aip (arx) : ORIGIN = 0x8c00e000, LENGTH = 0x2000
}
SECTIONS
{
.text.sg_ini :
{
KEEP(*(.text.*sg_ini))
. = 0x2800;
} > sg_ini
/DISCARD/ :
{
*(.text)
*(.data)
*(.bss)
*(.comment)
}
}