diff options
| author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-09 23:54:57 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-09 23:54:57 -0500 |
| commit | ef935f6f4a59a2b37c4ff870ade96853621210ae (patch) | |
| tree | 2d4d38532c737126a718986bfaa1c52e485769b7 /ld_script.txt | |
| parent | 1c82571fa04ecad7d4a805e5fbec4691643ac655 (diff) | |
| parent | e65677c944b786c8f94adc8c962b7ee180bfe548 (diff) | |
Merge pull request #1544 from GriffinRichards/romheadergf
Split headers from crt0.s
Diffstat (limited to 'ld_script.txt')
| -rw-r--r-- | ld_script.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ld_script.txt b/ld_script.txt index e310bf717..cecb8f23c 100644 --- a/ld_script.txt +++ b/ld_script.txt @@ -47,6 +47,8 @@ SECTIONS { .text : ALIGN(4) { + src/rom_header.o(.text); + src/rom_header_gf.o(.text.*); src/crt0.o(.text); src/main.o(.text); gflib/malloc.o(.text); @@ -435,6 +437,8 @@ SECTIONS { .rodata : ALIGN(4) { + src/rom_header.o(.rodata); + src/rom_header_gf.o(.rodata); src/main.o(.rodata); gflib/bg.o(.rodata); gflib/window.o(.rodata); |
