mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-07-06 12:40:56 -04:00
Discover strings in game binary
This commit is contained in:
+32
@@ -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);
|
||||
}
|
||||
}
|
||||
+943
-6740
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user