From 93b7463dbd061c40969fc9c08728f28d29ab19e6 Mon Sep 17 00:00:00 2001 From: red031000 Date: Wed, 13 May 2020 00:54:19 +0100 Subject: fix matching for module --- arm9/arm9.lcf | 2 +- 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 -- cgit v1.2.3