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_NHW_AES_ECB_H
8 #define _NRF_HW_MODEL_NHW_AES_ECB_H
9 
10 #ifdef __cplusplus
11 extern "C"{
12 #endif
13 
14 void nhw_ECB_regw_sideeffects_INTENSET(void);
15 void nhw_ECB_regw_sideeffects_INTENCLR(void);
16 void nhw_ECB_regw_sideeffects_TASKS_STARTECB(void);
17 void nhw_ECB_regw_sideeffects_TASKS_STOPECB(void);
18 void nhw_ECB_regw_sideeffects_SUBSCRIBE_STARTECB(unsigned int inst);
19 void nhw_ECB_regw_sideeffects_SUBSCRIBE_STOPECB(unsigned int inst);
20 void nhw_ECB_regw_sideeffects_EVENTS_all(unsigned int inst);
21 void nhw_aes_ecb_cheat_set_t_ecb(unsigned int new_t);
22 void nhw_aes_ecb_cheat_reset_t_ecb(void);
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif
29