1 /*
2  * Copyright (c) 2023 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _NRF_HW_MODEL_NHW_MISC_H
8 #define _NRF_HW_MODEL_NHW_MISC_H
9 
10 #include <stdbool.h>
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 const char *nhw_get_core_name(unsigned int core_n);
17 void *nhw_convert_RAM_addr(void *ram_addr);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif /* _NRF_HW_MODEL_NHW_MISC_H */
24