Discover strings in game binary
This commit is contained in:
parent
77cd742ed4
commit
84bf256884
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
7683
src/game/game.c
7683
src/game/game.c
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue