Skip to content

Commit

Permalink
Fix DMAC
Browse files Browse the repository at this point in the history
  • Loading branch information
Princess-of-Sleeping authored and d3m3vilurr committed Dec 31, 2021
1 parent c332e5f commit d51edbc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions include/psp2kern/kernel/dmac.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@ extern "C" {
/**
* DMA memcpy
*
* @param[in] dst - Destination
* @param[in] src - Source
* @param[in] dst - Destination
* @param[in] src - Source
* @param[in] size - Size
*
* @return dst.
*/
void *ksceDmacMemcpy(void *dst, const void *src, SceSize size);
* @return 0 on success, < 0 on error.
*/
int ksceDmacMemcpy(void *dst, const void *src, SceSize size);

/**
* DMA memset
*
* @param[in] dst - Destination
* @param[in] c - Constant
* @param[in] dst - Destination
* @param[in] c - Constant
* @param[in] size - Size
*
* @return dst.
*/
void *ksceDmacMemset(void *dst, int c, SceSize size);
* @return 0 on success, < 0 on error.
*/
int ksceDmacMemset(void *dst, int c, SceSize size);

#ifdef __cplusplus
}
Expand Down

0 comments on commit d51edbc

Please sign in to comment.