diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2021-08-28 14:40:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-28 14:40:42 -0400 |
commit | 3e43c51f3902901642255bb9e932656e136afc1a (patch) | |
tree | 5b438458b1ebd92e25413aee8bcf5368b9d71049 /arm7/lib/include/MI_memory.h | |
parent | e6e6e3a36e2f7413b5278a88696932b9dd22555a (diff) | |
parent | 7994935696dcf9d81888e2d9d991f4b6a3e00738 (diff) |
Merge branch 'master' into pikalax_work
Diffstat (limited to 'arm7/lib/include/MI_memory.h')
-rw-r--r-- | arm7/lib/include/MI_memory.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arm7/lib/include/MI_memory.h b/arm7/lib/include/MI_memory.h index 1e0de0b9..6fa1d0ec 100644 --- a/arm7/lib/include/MI_memory.h +++ b/arm7/lib/include/MI_memory.h @@ -22,4 +22,9 @@ static inline void MI_CpuClear32(void *dest, u32 size) MI_CpuFill32(dest, 0, size); } +static inline void MI_CpuCopy32(void *src, void *dst, u32 size) +{ + MIi_CpuCopy32((u32 *)src, (u32 *)dst, size); +} + #endif //POKEDIAMOND_ARM7_MI_MEMORY_H |