1# Linker Command Script Spec File 2 3Static main 4{ 5 Address 0x02000000 6 Object *.o (.text) 7 Object *.axxx 8 Object OBJECT(func,*) (.text) 9 Objects bin/ARM9-TEG/Release/*.o 10 Objects "d:/Program Files/bin/ARM9-TEG/Release/*.o" 11 Object A/B/C 12 Object * GROUP(ROOT) 13 Object . .. 14 Library libos.a 15 Libraries lib/libmi.a 16 SearchSymbol overlay_0 17 SearchSymbol overlay_1 18 19 StackSize 8192 1024 20} 21 22Autoload overlay_0 23{ 24 Address 0x03f00000 25 Object aaa.o bbb.o 26 Library autoload_libos.a 27 Libraries lib/autoload_libmi.a 28 SearchSymbol overlay_1 29} 30 31Autoload overlay_1 32{ 33 After main 34 Object ccc.o \ 35 ddd.o 36 Library autoload_libos.a 37 Libraries lib/autoload_libmi.a 38} 39 40Overlay overlay_2 41{ 42 Group GroupA 43 After overlay_1 44 Object eee.o fff.o 45 SearchSymbol overlay_0 overlay_1 46 Library overlay_libos.a 47 Libraries lib/overlay_libmi.a 48} 49 50Overlay overlay_3 51{ 52 After overlay_1 53 Object eee.o fff.o 54 Library overlay_libos.a 55 Libraries lib/overlay_libmi.a 56} 57