summaryrefslogtreecommitdiff
path: root/src/boot_O2_g3/idle.c
diff options
context:
space:
mode:
authorTharo <17233964+Thar0@users.noreply.github.com>2021-02-24 04:15:58 +0000
committerGitHub <noreply@github.com>2021-02-23 23:15:58 -0500
commitc55e9eeee5f6ed8e2f7cd9912a0b347761ea7126 (patch)
tree926f81b788021d29ce3604c8617b0064295e7713 /src/boot_O2_g3/idle.c
parente0164dba144220fb67b2385ec760fa85535faf6a (diff)
pragma variant for GLOBAL_ASM (#49)
* pragma GLOBAL_ASM * Revert split_asm.py arg description change
Diffstat (limited to 'src/boot_O2_g3/idle.c')
-rw-r--r--src/boot_O2_g3/idle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot_O2_g3/idle.c b/src/boot_O2_g3/idle.c
index 9039ba6b3..4cba6e49c 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
-GLOBAL_ASM("./asm/non_matchings/idle/Idle_InitFramebuffer.asm")
+#pragma GLOBAL_ASM("./asm/non_matchings/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
-GLOBAL_ASM("./asm/non_matchings/idle/Idle_InitCodeAndMemory.asm")
+#pragma GLOBAL_ASM("./asm/non_matchings/idle/Idle_InitCodeAndMemory.asm")
#endif
void Main_ThreadEntry(void* arg) {