1 /*
2  * Copyright (c) 2020 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /* Provides a mocked nrf.h.
8  * This reuses the nrf.h from the MDK, but defines base registers
9  * and peripheral addresses to point to mocked peripherals.
10  */
11 
12 #ifndef NRF_BSIM_H__
13 #define NRF_BSIM_H__
14 
15 /* Include the real nrf.h */
16 #include <mdk/nrf.h>
17 
18 /* For BSIM we require redefining the pointers to the peripherals. */
19 #include "nrf_bsim_redef.h"
20 
21 #endif
22