diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-07-09 17:35:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-09 19:35:12 -0500 |
commit | 386299d1f401cb939e6fe3ea16d0ca57731b2648 (patch) | |
tree | bb0644a8ad61f43d483dfbc2932011bcfa2388ab /ld_script.txt | |
parent | f55ac4c552291687f5a3972b2ad9bdb187676229 (diff) |
Makefile and Install.md Revamp (#41)
* Makefile: move over to gcc for preproc and ditch cpp
* INSTALL: rewrite INSTALL
* README: add CI badge
* Makefile: make tools build before anything else
Diffstat (limited to 'ld_script.txt')
-rwxr-xr-x | ld_script.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld_script.txt b/ld_script.txt index 38fe51b..b8e8e75 100755 --- a/ld_script.txt +++ b/ld_script.txt @@ -10,13 +10,13 @@ SECTIONS { ALIGN(4) { ewram_start = .; - INCLUDE "sym_ewram.ld" + INCLUDE "sym_ewram.txt" src/agb_flash.o(.bss); *libgcc.a:fp-bit.o(.bss); *libgcc.a:dp-bit.o(.bss); *libc.a:syscalls.o(.bss); . = ALIGN(16); - INCLUDE "sym_ewram2.ld" + INCLUDE "sym_ewram2.txt" *libc.a:impure.o(.data); *libc.a:locale.o(.data); *libc.a:mallocr.o(.data); @@ -30,7 +30,7 @@ SECTIONS { ALIGN(4) { iwram_start = .; - INCLUDE "sym_iwram.ld" + INCLUDE "sym_iwram.txt" . = 0x8000; } |