1 /*
2  * Copyright (C) 2015-2020 Alibaba Group Holding Limited
3  */
4 #ifndef __SYSTEM_CP_H__
5 #define __SYSTEM_CP_H__
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 #include "stdint.h"
12 
13 void system_cp_reset_handler(void);
14 
15 void system_cp_init(int load_code);
16 
17 void system_cp_term(void);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif
24