diff options
author | red031000 <rubenru09@aol.com> | 2020-05-20 16:48:12 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-05-20 16:48:12 +0100 |
commit | ca4b474a0daa9789ac93b86f035f8e47254439ac (patch) | |
tree | 94a865444a3876a912e59c5256cff915312960d8 | |
parent | 9aa70573ad7d087e3121de3d445736a798301acb (diff) |
split libstd, all sdk libs are split
-rw-r--r-- | arm9/arm9.lcf | 2 | ||||
-rw-r--r-- | arm9/asm/STD_string.s (renamed from arm9/asm/libstd.s) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arm9/arm9.lcf b/arm9/arm9.lcf index 9035d69e..52f70ee3 100644 --- a/arm9/arm9.lcf +++ b/arm9/arm9.lcf @@ -247,7 +247,7 @@ SECTIONS { MATH.o (.text) MATH_dgt.o (.text) MATH_crc.o (.text) - libstd.o (.text) + STD_string.o (.text) /* C standard library */ libc.o (.text) /* MWCC library */ diff --git a/arm9/asm/libstd.s b/arm9/asm/STD_string.s index 39946c46..e8a74a75 100644 --- a/arm9/asm/libstd.s +++ b/arm9/asm/STD_string.s @@ -1,5 +1,5 @@ - .include "asm/macros.inc" - .include "global.inc" + .include "asm/macros.inc" + .include "global.inc" .text |