From 9d669a11af61814d9d45335466ac256ebc198331 Mon Sep 17 00:00:00 2001 From: gijs Date: Fri, 20 Oct 2023 17:35:53 +0200 Subject: [PATCH] Split `nuGfxTaskAllEndWait` into it's own C file --- splat.yaml | 2 +- src/nu/nugfxtaskallendwait.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 src/nu/nugfxtaskallendwait.c diff --git a/splat.yaml b/splat.yaml index 29308ab..14d56bc 100644 --- a/splat.yaml +++ b/splat.yaml @@ -116,7 +116,7 @@ segments: - [0x19940, c, "nu/nugfxtaskmgr"] - [0x19D90, c, "nu/nugfxfuncset"] - [0x19DD0, c, "nu/nugfxswapcfbfuncset"] - - [0x19E10, asm] + - [0x19E10, c, "nu/nugfxtaskallendwait"] - [0x19E30, c, "nu/nugfxretracewait"] - [0x19EB0, c, "nu/nugfxsetcfb"] - [0x19FC0, c, "black"] diff --git a/src/nu/nugfxtaskallendwait.c b/src/nu/nugfxtaskallendwait.c new file mode 100644 index 0000000..bda7b90 --- /dev/null +++ b/src/nu/nugfxtaskallendwait.c @@ -0,0 +1,3 @@ +#include "common.h" + +INCLUDE_ASM(const s32, "nu/nugfxtaskallendwait", nuGfxTaskAllEndWait);