#include <nitro/mi.h>
void MI_WriteByte( void* address, u8 data);
address | Address for writing byte data (pointer) |
data | The data to write. |
None.
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.
03/30/2004 Initial version.