summaryrefslogtreecommitdiffstats
path: root/bsps/include/xil/xil_mem.h
blob: d6bc637a940b920da387d7be7d1192d49dd6c2c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/******************************************************************************/
/**
* Copyright (c) 2015 - 2020 Xilinx, Inc.  All rights reserved.
* SPDX-License-Identifier: MIT
******************************************************************************/

/****************************************************************************/
/**
* @file xil_mem.h
*
* @addtogroup common_mem_operation_api Customized APIs for Memory Operations
*
* The xil_mem.h file contains prototype for functions related
* to memory operations. These APIs are applicable for all processors supported
* by Xilinx.
*
* @{
* <pre>
* MODIFICATION HISTORY:
*
* Ver   Who      Date     Changes
* ----- -------- -------- -----------------------------------------------
* 6.1   nsk      11/07/16 First release.
* 7.0   mus      01/07/19 Add cpp extern macro
*
* </pre>
*
*****************************************************************************/
#ifndef XIL_MEM_H		/* prevent circular inclusions */
#define XIL_MEM_H		/* by using protection macros */

#ifdef __cplusplus
extern "C" {
#endif

/************************** Function Prototypes *****************************/

void Xil_MemCpy(void* dst, const void* src, u32 cnt);

#ifdef __cplusplus
}
#endif

#endif /* XIL_MEM_H */
/**
* @} End of "addtogroup common_mem_operation_api".
*/