Add missing boot.ld
This commit is contained in:
parent
114a3c6c75
commit
34d7db60bf
|
|
@ -0,0 +1,37 @@
|
|||
/*OUTPUT_FORMAT ("elf32-bigmips")*/
|
||||
OUTPUT_ARCH (mips)
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
setupSegmentStart = 0x80059fe0;
|
||||
setupSegmentRomStart = 0x39850;
|
||||
rarezipSegmentRomStart = 0x4e850;
|
||||
ziplistSegmentRomStart = 0x4fc40;
|
||||
|
||||
.boot 0x00001000 : AT(0) {
|
||||
build/ntsc-final/boot.o (.text);
|
||||
build/ntsc-final/boot.o (.data);
|
||||
}
|
||||
|
||||
.library 0x00003050 : AT(SIZEOF(.boot)) {
|
||||
build/ntsc-final/library.o (.text);
|
||||
build/ntsc-final/library.o (.data);
|
||||
}
|
||||
|
||||
.setup 0x80059fe0 : AT(SIZEOF(.boot) + SIZEOF(.library)) {
|
||||
build/ntsc-final/setup.o (.text);
|
||||
build/ntsc-final/setup.o (.data);
|
||||
}
|
||||
|
||||
/DISCARD/ : {
|
||||
* (.MIPS.abiflags);
|
||||
* (.options);
|
||||
* (.gnu.attributes);
|
||||
* (.pdr);
|
||||
* (.mdebug);
|
||||
* (.gptab.bss);
|
||||
* (.gptab.data);
|
||||
* (.reginfo);
|
||||
* (.setup.data);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue