MI_WriteByte


C Specification

#include <nitro/mi.h>

void MI_WriteByte( void* address, u8 data )

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.

Arguments

address Address for writing byte data (pointer)
data Data to write

Return Values

None

See Also

MI_ReadByte

Revision History

03/30/2004 Initial Version