summaryrefslogtreecommitdiff
path: root/src/boot_O2_g3
diff options
context:
space:
mode:
authorKenix3 <kenixwhisperwind@gmail.com>2021-03-07 19:45:08 -0500
committerKenix3 <kenixwhisperwind@gmail.com>2021-03-10 22:28:06 -0500
commit037ba9a22e2052425aacca4089029764a308669d (patch)
tree033e5f7e74564cfd31591273c886a70ca55a7273 /src/boot_O2_g3
parentfb1ed529ad9cfeb13158edbe716deb5aace4f272 (diff)
Initial support of tracking progress per code/boot/overlay, and outputs the stats to csv.
Diffstat (limited to 'src/boot_O2_g3')
-rw-r--r--src/boot_O2_g3/idle.c4
-rw-r--r--src/boot_O2_g3/viconfig.c2
-rw-r--r--src/boot_O2_g3/z_std_dma.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/boot_O2_g3/idle.c b/src/boot_O2_g3/idle.c
index 4cba6e49c..f3c5f711c 100644
--- a/src/boot_O2_g3/idle.c
+++ b/src/boot_O2_g3/idle.c
@@ -23,7 +23,7 @@ void Idle_InitFramebuffer(u32* ptr, u32 numBytes, u32 value) {
}
}
#else
-#pragma GLOBAL_ASM("./asm/non_matchings/idle/Idle_InitFramebuffer.asm")
+#pragma GLOBAL_ASM("./asm/non_matchings/boot/idle/Idle_InitFramebuffer.asm")
#endif
void Idle_InitScreen(void) {
@@ -65,7 +65,7 @@ void Idle_InitCodeAndMemory(void) {
Idle_ClearMemory(&code_bss_start, &code_bss_end);
}
#else
-#pragma GLOBAL_ASM("./asm/non_matchings/idle/Idle_InitCodeAndMemory.asm")
+#pragma GLOBAL_ASM("./asm/non_matchings/boot/idle/Idle_InitCodeAndMemory.asm")
#endif
void Main_ThreadEntry(void* arg) {
diff --git a/src/boot_O2_g3/viconfig.c b/src/boot_O2_g3/viconfig.c
index f5a0eed3e..c36f9b2e2 100644
--- a/src/boot_O2_g3/viconfig.c
+++ b/src/boot_O2_g3/viconfig.c
@@ -49,7 +49,7 @@ void ViConfig_UpdateVi(u32 arg0) {
gViConfigUseDefault = arg0;
}
#else
-#pragma GLOBAL_ASM("./asm/non_matchings/viconfig/ViConfig_UpdateVi.asm")
+#pragma GLOBAL_ASM("./asm/non_matchings/boot/viconfig/ViConfig_UpdateVi.asm")
#endif
void ViConfig_UpdateBlack(void) {
diff --git a/src/boot_O2_g3/z_std_dma.c b/src/boot_O2_g3/z_std_dma.c
index ea80097a6..6b7043396 100644
--- a/src/boot_O2_g3/z_std_dma.c
+++ b/src/boot_O2_g3/z_std_dma.c
@@ -141,7 +141,7 @@ void DmaMgr_ProcessMsg(DmaRequest* a0) {
}
}
#else
-#pragma GLOBAL_ASM("./asm/non_matchings/z_std_dma/DmaMgr_ProcessMsg.asm")
+#pragma GLOBAL_ASM("./asm/non_matchings/boot/z_std_dma/DmaMgr_ProcessMsg.asm")
#endif
void Dmamgr_ThreadEntry(void* a0) {
@@ -215,7 +215,7 @@ void Dmamgr_Start() {
osStartThread(&dmamgrOSThread);
}
#else
-#pragma GLOBAL_ASM("./asm/non_matchings/z_std_dma/Dmamgr_Start.asm")
+#pragma GLOBAL_ASM("./asm/non_matchings/boot/z_std_dma/Dmamgr_Start.asm")
#endif
void Dmamgr_Stop() {