

#include <nitro/std.h>
void* STD_FillMemory(void *destp, u8 data, u32 size);
void* STD_MemSet(void *destp, u8 data, u32 size);
| destp | The transfer destination address |
| data | The data that will be transferred |
| size | Transfer size |
None.
This function uses the CPU to fill memory with specified data.
STD_MemSet is defined as another name for STD_FillMemory.
Use MI_CpuFill8, MI_CpuFill16, MI_CpuFill32, or MI_CpuFillFast to access VRAM.
2008/09/01 Initial version.
CONFIDENTIAL