wut
v1.7.0
Wii U Toolchain
|
Enumerations | |
enum | DMAESwapMode { DMAE_SWAP_NONE = 0 , DMAE_SWAP_16 = 1 , DMAE_SWAP_32 = 2 , DMAE_SWAP_64 = 3 } |
DMAE Memory endian swappng mode. More... | |
Functions | |
DMAETimeStamp | DMAECopyMem (void *dst, const void *src, uint32_t wordCount, DMAESwapMode swap) |
Starts a DMAE copy operation. More... | |
DMAETimeStamp | DMAEFillMem (void *dst, uint32_t val, uint32_t wordCount) |
Starts a DMAE fill operation. More... | |
DMAETimeStamp | DMAEFillMemPhys (void *dst, uint32_t val, uint32_t wordCount) |
Starts a DMAE fill operation for a physical address. More... | |
enum DMAESwapMode |
DMAETimeStamp DMAECopyMem | ( | void * | dst, |
const void * | src, | ||
uint32_t | wordCount, | ||
DMAESwapMode | swap | ||
) |
Starts a DMAE copy operation.
dst | Pointer to the destination buffer. |
src | Pointer to the source buffer. |
wordCount | Number of 32 bit words to copy. |
swap | Memory endian swapping mode. |
DMAETimeStamp DMAEFillMem | ( | void * | dst, |
uint32_t | val, | ||
uint32_t | wordCount | ||
) |
Starts a DMAE fill operation.
dst | Pointer to the destination buffer. |
val | The value to fill the destination buffer. |
wordCount | Number of 32 bit words to fill. |
DMAETimeStamp DMAEFillMemPhys | ( | void * | dst, |
uint32_t | val, | ||
uint32_t | wordCount | ||
) |
Starts a DMAE fill operation for a physical address.
dst | Pointer to the destination buffer (physical address). |
val | The value to fill the destination buffer. |
wordCount | Number of 32 bit words to fill. |