1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Note that the function prototypes are taken from the NRFx HAL 7 */ 8 9 #include <stdbool.h> 10 nrf_dma_accessible_check(void const * p_reg,void const * p_object)11bool nrf_dma_accessible_check(void const * p_reg, void const * p_object) 12 { 13 (void)p_reg; 14 (void)p_object; 15 return true; /* No restrictions in simulation */ 16 } 17