diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-06-20 12:13:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-20 12:13:15 -0400 |
commit | 16b091058e6135f9b7875fcf074d812d610df380 (patch) | |
tree | 3e766233037a6058d704f695204ff3e23e7edac8 /arm9/lib/include/MI_memory.h | |
parent | 01c4d4b1858149c2da1ce76368ac861f16fd066d (diff) | |
parent | ae9380cad03effaef52810db07105ca3f2c1a3f8 (diff) |
Merge pull request #179 from PikalaxALT/pikalax_work
msgdata
Diffstat (limited to 'arm9/lib/include/MI_memory.h')
-rw-r--r-- | arm9/lib/include/MI_memory.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arm9/lib/include/MI_memory.h b/arm9/lib/include/MI_memory.h index e1e5fe11..c39c7895 100644 --- a/arm9/lib/include/MI_memory.h +++ b/arm9/lib/include/MI_memory.h @@ -22,6 +22,11 @@ static inline void MI_CpuClear32(void *dest, u32 size) MI_CpuFill32(dest, 0, size); } +static inline void MI_CpuCopy16(const void *src, void *dest, u32 size) +{ + MIi_CpuCopy16(src, dest, size); +} + void MIi_CpuClearFast(u32 data, void *destp, u32 size); #endif //NITRO_MI_MEMORY_H_ |