MI_WriteByte

C Specification

#include <nitro/mi.h>

void MI_WriteByte( void* address, u8 data);

Arguments

address Address for writing byte data (pointer)
data The data to write.

Return Values

None.

Description

This function writes byte data to the address specified by a void typed pointer. Internally, it accesses memory as u16 data. Therefore at assembler level, byte access instructions such as strb/ldrb will not be generated.

See Also

MI_ReadByte

Revision History

03/30/2004 Initial version.