diff options
author | red031000 <rubenru09@aol.com> | 2020-05-13 00:54:19 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-05-13 00:54:19 +0100 |
commit | 93b7463dbd061c40969fc9c08728f28d29ab19e6 (patch) | |
tree | 8db13ec779cce0155a279337677103fe0c1f621c | |
parent | a91b629bb3f22493f580e5f730070980e2552039 (diff) |
fix matching for module
-rw-r--r-- | arm9/arm9.lcf | 2 | ||||
-rw-r--r-- | arm9/asm/arm9_itcm.s | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arm9/arm9.lcf b/arm9/arm9.lcf index b18edfa1..a1c3d015 100644 --- a/arm9/arm9.lcf +++ b/arm9/arm9.lcf @@ -323,7 +323,7 @@ SECTIONS { { . = ALIGN(32); SDK_AUTOLOAD.ITCM.START = .; - arm9_itcm.o (.itcm) + arm9_itcm.o (.text) . = ALIGN(32); SDK_AUTOLOAD.ITCM.END = .; SDK_AUTOLOAD.ITCM.SIZE = SDK_AUTOLOAD.ITCM.END - SDK_AUTOLOAD.ITCM.START; diff --git a/arm9/asm/arm9_itcm.s b/arm9/asm/arm9_itcm.s index 79c0de28..7db3d194 100644 --- a/arm9/asm/arm9_itcm.s +++ b/arm9/asm/arm9_itcm.s @@ -1,6 +1,6 @@ .include "asm/macros.inc" .include "global.inc" - .section .itcm + .section .text ; OS arm_func_start OS_IrqHandler @@ -125,7 +125,7 @@ _01FF81A8: .word OSi_ThreadInfo _01FF81AC: .word CP_SaveContext _01FF81B0: .word CP_RestoreContext - .section .itcm + .section .text arm_func_start OSi_DoBoot OSi_DoBoot: ; 0x01FF81B4 mov ip, #0x04000000 |