STD_FillMemory

Syntax

#include <nitro/std.h>

void* STD_FillMemory(void *destp, u8 data, u32 size);
void* STD_MemSet(void *destp, u8 data, u32 size);

Arguments

destp The transfer destination address
data The data that will be transferred
size Transfer size

Return Values

None.

Description

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.

See Also

MI_CpuFill*

Revision History

2008/09/01 Initial version.


CONFIDENTIAL