mirror of
https://github.com/pret/pokeruby.git
synced 2026-08-09 02:54:23 -05:00
88 lines
2.1 KiB
Plaintext
88 lines
2.1 KiB
Plaintext
ENTRY(Start)
|
|
|
|
SECTIONS {
|
|
.bss :
|
|
ALIGN(4)
|
|
{
|
|
. = 0x3000F38;
|
|
tools/agbcc/lib/libgcc.a:dp-bit.o(.bss);
|
|
tools/agbcc/lib/libgcc.a:fp-bit.o(.bss);
|
|
}
|
|
|
|
. = 0x8000000;
|
|
|
|
.text :
|
|
ALIGN(4)
|
|
{
|
|
asm/crt0.o(.text);
|
|
asm/rom1.o(.text);
|
|
src/string_util.o(.text);
|
|
asm/rom2.o(.text);
|
|
src/rtc.o(.text);
|
|
asm/rom3.o(.text);
|
|
src/play_time.o(.text);
|
|
asm/rom4.o(.text);
|
|
src/task.o(.text);
|
|
asm/rom5.o(.text);
|
|
} =0
|
|
|
|
script_data :
|
|
ALIGN(4)
|
|
{
|
|
data/data1.o(script_data);
|
|
} =0
|
|
|
|
lib_text :
|
|
ALIGN(4)
|
|
{
|
|
asm/libgcnmultiboot.o(.text);
|
|
asm/libmks4agb.o(.text);
|
|
src/agb_flash.o(.text);
|
|
src/agb_flash_1m.o(.text);
|
|
src/agb_flash_mx.o(.text);
|
|
src/siirtc.o(.text);
|
|
asm/libagbsyscall.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_call_via_rX.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_divsi3.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_dvmd_tls.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_fixunsdfsi.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_fixunssfsi.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_modsi3.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_muldi3.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_udivdi3.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_udivsi3.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_umodsi3.o(.text);
|
|
tools/agbcc/lib/libgcc.a:dp-bit.o(.text);
|
|
tools/agbcc/lib/libgcc.a:fp-bit.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_lshrdi3.o(.text);
|
|
tools/agbcc/lib/libgcc.a:_negdi2.o(.text);
|
|
asm/libc.o(.text);
|
|
} =0
|
|
|
|
.rodata :
|
|
ALIGN(4)
|
|
{
|
|
data/data2.o(.rodata);
|
|
src/agb_flash.o(.rodata);
|
|
src/agb_flash_1m.o(.rodata);
|
|
src/agb_flash_mx.o(.rodata);
|
|
src/agb_flash_le.o(.rodata);
|
|
src/siirtc.o(.rodata);
|
|
tools/agbcc/lib/libgcc.a:_udivdi3.o(.rodata);
|
|
} =0
|
|
|
|
. = 0x8D00000;
|
|
|
|
gfx_data :
|
|
ALIGN(4)
|
|
{
|
|
data/graphics.o(gfx_data);
|
|
} =0
|
|
|
|
/* Discard everything not specifically mentioned above. */
|
|
/DISCARD/ :
|
|
{
|
|
*(*);
|
|
}
|
|
}
|