mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:24:17 +01:00
Add missing function to dmae/mem.h: DMAEFillMemPhys (#129)
- add function DMAEFillMemPhys
This commit is contained in:
parent
bab17a41c3
commit
80012b48bd
@ -68,6 +68,26 @@ DMAETimeStamp
|
||||
DMAEFillMem(void *dst,
|
||||
uint32_t val,
|
||||
uint32_t wordCount);
|
||||
|
||||
/**
|
||||
* Starts a DMAE fill operation for a physical address.
|
||||
*
|
||||
* \param dst
|
||||
* Pointer to the destination buffer (physical address).
|
||||
*
|
||||
* \param val
|
||||
* The value to fill the destination buffer.
|
||||
*
|
||||
* \param wordCount
|
||||
* Number of 32 bit words to fill.
|
||||
*
|
||||
* \return
|
||||
* DMAE operations queue timestamp.
|
||||
*/
|
||||
DMAETimeStamp
|
||||
DMAEFillMemPhys(void *dst,
|
||||
uint32_t val,
|
||||
uint32_t wordCount);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user