summaryrefslogtreecommitdiff
path: root/arm9/lib/include/MI_memory.h
diff options
context:
space:
mode:
authorRevo <projectrevotpp@hotmail.com>2021-01-08 19:33:39 -0500
committerGitHub <noreply@github.com>2021-01-08 19:33:39 -0500
commit3289261e5aaddcd67f72513de06a72a379854d5c (patch)
tree3af221138ff7d6e8ad56a4b95a6255a0edc3812b /arm9/lib/include/MI_memory.h
parentee1f12ce06e865f47511ba200029e0afaafa4255 (diff)
parent1e268426533b6bb78b86e35577c72cd4bb5cbb4c (diff)
Merge pull request #312 from red031000/master
decompile CTRDG_common
Diffstat (limited to 'arm9/lib/include/MI_memory.h')
-rw-r--r--arm9/lib/include/MI_memory.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/arm9/lib/include/MI_memory.h b/arm9/lib/include/MI_memory.h
index 450e5e58..339ff9b8 100644
--- a/arm9/lib/include/MI_memory.h
+++ b/arm9/lib/include/MI_memory.h
@@ -45,6 +45,11 @@ static inline void MI_CpuCopy16(const void *src, void *dest, u32 size)
MIi_CpuCopy16(src, dest, size);
}
+static inline void MI_CpuCopy32(const void *src, void *dest, u32 size)
+{
+ MIi_CpuCopy32(src, dest, size);
+}
+
static inline void MI_CpuFillFast(void *dest, u32 data, u32 size)
{
MIi_CpuClearFast(data, dest, size);