#include <nitro/mi.h>
SDK_INLINE void MI_StoreLE8 (void *ptr, u8 val);
SDK_INLINE void MI_StoreLE16(void *ptr, u16 val);
SDK_INLINE void MI_StoreLE32(void *ptr, u32 val);
SDK_INLINE void MI_StoreLE64(void *ptr, u64 val);
SDK_INLINE void MI_StoreBE8 (void *ptr, u8 val);
SDK_INLINE void MI_StoreBE16(void *ptr, u16 val);
SDK_INLINE void MI_StoreBE32(void *ptr, u32 val);
SDK_INLINE void MI_StoreBE64(void *ptr, u64 val);
ptr | The address to write to. Alignment to a 16-bit, 32-bit, or 64-bit boundary is not required. |
val | The value to write. |
None.
Stores a value in the specified address using the specified endian. LE represents little-endian, while BE represents big-endian.
These 8-bit versions do not actually perform any conversions, but they have been included for uniform source code visibility.
MI_SwapEndian*
MI_Load*
MI_HTo*
MI_*ToH*
2007/11/21 Added a description of the 64-bit version.
2006/06/13 Added a description of the 8-bit version.
2006/04/05 Initial version.
CONFIDENTIAL