

#include <nitro/std.h>
void* STD_CopyMemory(void *destp, const void *srcp, u32 size);
void* STD_MemCpy(void *destp, const void *srcp, u32 size);
| src | The transfer source address. |
| dest | The transfer destination address. |
| size | Transfer size. |
None.
Uses CPU to perform memory copy. It carries out the same operation as the C standard function memcpy().
STD_MemCpy() is defined as another name for STD_CopyMemory().
When accessing VRAM, use one of the following functions: MI_CpuCopy8(), MI_CpuCopy16(), MI_CpuCopy32(), MI_CpuCopyFast().
2007/12/10 Initial version.
CONFIDENTIAL