PSPSDK 2025-03-30
Loading...
Searching...
No Matches
pspdmac.h
Go to the documentation of this file.
1/*
2 * PSP Software Development Kit - http://www.pspdev.org
3 * -----------------------------------------------------------------------
4 * Licensed under the BSD license, see LICENSE in PSPSDK root for details.
5 *
6 * dmac.c - A DMAC function
7 *
8 * Copyright (c) 2016 173210 <root.3.173210@live.com>
9 */
10
11#ifndef __DMAC_H__
12#define __DMAC_H__
13
14#include <psptypes.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
29int sceDmacMemcpy(void *dst, const void *src, SceSize n);
30
31int sceDmacTryMemcpy(void *dst, const void *src, SceSize n);
32
33#ifdef __cplusplus
34}
35#endif
36
37#endif
int sceDmacMemcpy(void *dst, const void *src, SceSize n)
Copy data in memory using DMAC.
int sceDmacTryMemcpy(void *dst, const void *src, SceSize n)
unsigned int SceSize
Definition pspkerneltypes.h:27