diff options
| author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2019-07-30 21:31:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-30 21:31:27 -0500 |
| commit | bc159dbb03735db55e6a09bb7947dccc70d0532b (patch) | |
| tree | 5b27866fe839d0f2f7ae76e0f13580ecea2dd863 /ld_script.txt | |
| parent | b8393b3a799f92e7064c266600607d98f6baf4d9 (diff) | |
| parent | cf0da4c3bb5658908275068591fe51fb6f2ce49d (diff) | |
Merge pull request #752 from camthesaxman/emerald_diff
resolve some Emerald differences
Diffstat (limited to 'ld_script.txt')
| -rw-r--r-- | ld_script.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ld_script.txt b/ld_script.txt index 7c74565e3..67d452f32 100644 --- a/ld_script.txt +++ b/ld_script.txt @@ -21,6 +21,7 @@ SECTIONS { { /* .bss starts at 0x3000000 */ INCLUDE "sym_bss.ld" + *(.bss); /* .bss.code starts at 0x3000F60 */ src/libs/m4a.o(.bss.code); @@ -28,6 +29,7 @@ SECTIONS { /* COMMON starts at 0x3001760 */ INCLUDE "sym_common.ld" *libc.a:sbrkr.o(COMMON); + *(COMMON); end = .; . = 0x8000; } |
