diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-19 19:32:35 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-19 19:32:35 -0400 |
commit | 669fafdcf6929def1bdc82805f57daa0b75c245e (patch) | |
tree | 69198d5bacc534653ec5e8e2df9c3604eba31711 /arm9/lib/include | |
parent | 06a7bf4c8c36af699b9882623d2642baf0269bf3 (diff) |
through FUN_0200A76C
Diffstat (limited to 'arm9/lib/include')
-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_ |