1 /*
2  * Copyright (c) 2017 Oticon A/S
3  * Copyright (c) 2023 Nordic Semiconductor ASA
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  */
7 #ifndef _NRF_HW_MODEL_AAR_H
8 #define _NRF_HW_MODEL_AAR_H
9 
10 #ifdef __cplusplus
11 extern "C"{
12 #endif
13 
14 void nhw_AAR_TASK_START(void);
15 void nhw_AAR_TASK_STOP(void);
16 void nhw_AAR_regw_sideeffects_INTENSET(void);
17 void nhw_AAR_regw_sideeffects_INTENCLR(void);
18 void nhw_AAR_regw_sideeffects_TASKS_START(void);
19 void nhw_AAR_regw_sideeffects_TASKS_STOP(void);
20 void nhw_AAR_regw_sideeffects_SUBSCRIBE_START(unsigned int inst);
21 void nhw_AAR_regw_sideeffects_SUBSCRIBE_STOP(unsigned int inst);
22 void nhw_AAR_regw_sideeffects_EVENTS_all(unsigned int inst);
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif
29