Discover strings in game binary

This commit is contained in:
Ryan Dwyer 2019-10-04 18:36:17 +10:00
parent 77cd742ed4
commit 84bf256884
2 changed files with 975 additions and 6740 deletions

32
ld/game.ld Normal file
View File

@ -0,0 +1,32 @@
/*OUTPUT_FORMAT ("elf32-bigmips")*/
OUTPUT_ARCH (mips)
SECTIONS
{
.game 0x0f000000 : AT(0) {
build/ntsc-final/game.o (.text);
build/ntsc-final/game.o (.data);
}
.library 0x00003050 : AT(SIZEOF(.game)) {
build/ntsc-final/library.o (.text);
build/ntsc-final/library.o (.data);
}
.setup 0x80059fe0 : AT(SIZEOF(.game) + 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);
}
}

File diff suppressed because it is too large Load Diff