mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-03 17:17:10 +02:00
gint: remove the need to track filename offset in stage-2 load
By patching the ELF we insert the filename at a time where the file format itself already tracks it (through the symbol .stage2_filename).
This commit is contained in:
parent
da05e89b1c
commit
88eb5413a6
1 changed files with 3 additions and 4 deletions
|
@ -20,8 +20,7 @@ The only subtlety is that the stage-2 loader must know the binary file's path
|
|||
to load from the filesystem, and HollyHock doesn't (yet) give it to us. We
|
||||
write the path in the final binary with the fxsdk/scripts/patch_hh2_filename.py
|
||||
script from the fxSDK. This is fragile (i.e. not renaming-proof), but a start.
|
||||
Since the header is variable-size, I leave the offset of stage-2 in the binary
|
||||
at offset 0x06. I could avoid this by patching the ELF, not bin, but I'm lazy.
|
||||
We find the filename by looking up the .stage2_filename symbol in the ELF.
|
||||
*/
|
||||
|
||||
/* 16-byte header */
|
||||
|
@ -33,8 +32,8 @@ _start_header:
|
|||
mov.l 1f, r0
|
||||
jmp @r0
|
||||
nop
|
||||
/* Offset to hardcoded filename, used to patch binary after linking */
|
||||
.word .stage2_filename
|
||||
nop
|
||||
|
||||
/* Address of stage-2 */
|
||||
1: .long _stage2
|
||||
/* Stage-1 load address at end of RAM (specified in linker script) */
|
||||
|
|
Loading…
Add table
Reference in a new issue