Split headers from crt0

This commit is contained in:
GriffinR
2021-10-31 16:36:31 -04:00
parent 875be8a8a8
commit dac4192fd3
4 changed files with 100 additions and 100 deletions

View File

@@ -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);