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_RNG_H 8 #define _NRF_HW_MODEL_RNG_H 9 10 #ifdef __cplusplus 11 extern "C"{ 12 #endif 13 14 void nhw_RNG_regw_sideeffects_TASKS_START(void); 15 void nhw_RNG_regw_sideeffects_TASKS_STOP(void); 16 void nhw_RNG_regw_sideeffects_INTENSET(void); 17 void nhw_RNG_regw_sideeffects_INTENCLR(void); 18 void nhw_RNG_regw_sideeffects_EVENTS_all(unsigned int inst); 19 void nhw_RNG_regw_sideeffects_SUBSCRIBE_START(unsigned int inst); 20 void nhw_RNG_regw_sideeffects_SUBSCRIBE_STOP(unsigned int inst); 21 void nhw_RNG_TASK_START(void); 22 void nhw_RNG_TASK_STOP(void); 23 24 #ifdef __cplusplus 25 } 26 #endif 27 28 #endif 29