SECTIONS { /* start of ewram */ . = 0x02000000; ewram (NOLOAD) : ALIGN(4) { . = 0x40000; } /* start of iwram */ . = 0x03000000; iwram (NOLOAD) : ALIGN(4) { /* .bss starts at 0x3000000 */ /* COMMON starts at ??? */ . = 0x8000; } /* start of ROM */ . = 0x08000000; .text : { asm/start.o(.text); src/main.o(.text); asm/rom_24C.o(.text); asm/rom_25A4.o(.text); asm/rom_2C58.o(.text); asm/pokedex.o(.text); asm/field_select.o(.text); asm/intro.o(.text); asm/high_scores.o(.text); asm/rom_1068C.o(.text); src/titlescreen.o(.text); asm/titlescreen.o(.text); asm/rom_11B9C.o(.text); asm/options.o(.text); asm/rom_528AC.o(.text); asm/m4a_1.o(.text); src/m4a_2.o(.text); asm/m4a_3.o(.text); src/m4a_4.o(.text); asm/libagbsyscall.o(.text); asm/unknown_lib.o(.text); *libgcc.a:_call_via_rX.o(.text); *libgcc.a:_divsi3.o(.text); *libgcc.a:_dvmd_tls.o(.text); *libgcc.a:_modsi3.o(.text); *libgcc.a:_udivsi3.o(.text); *libgcc.a:_umodsi3.o(.text); *libc.a:memcpy.o(.text); *libc.a:memset.o(.text); asm/unknown_lib_2.o(.text); }=0 .rodata : { data/rom.o(.rodata) }=0xFF /* Discard everything not specifically mentioned above. */ /DISCARD/ : { *(*); } }