Pinning GFHeader to front of modern
- Pinning the GF Header, crt0, and main to the front of the ROM when building modern. - Moving the gflib before other source files, to make it closer to the non-modern linker script (and therefore smaller patches).
This commit is contained in:
parent
b8371500d3
commit
e698a6506f
1 changed files with 5 additions and 2 deletions
|
@ -49,8 +49,11 @@ SECTIONS {
|
||||||
ALIGN(4)
|
ALIGN(4)
|
||||||
{
|
{
|
||||||
src/rom_header.o(.text*);
|
src/rom_header.o(.text*);
|
||||||
src/*.o(.text*);
|
src/rom_header_gf.o(.text.*);
|
||||||
|
src/crt0.o(.text);
|
||||||
|
src/main.o(.text);
|
||||||
gflib/*.o(.text*);
|
gflib/*.o(.text*);
|
||||||
|
src/*.o(.text*);
|
||||||
asm/*.o(.text*);
|
asm/*.o(.text*);
|
||||||
} =0
|
} =0
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue