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 "hal/nrf_rramc.h"
10 #include "NHW_RRAMC.h"
11 
nrf_rramc_erase_all_set(NRF_RRAMC_Type * p_reg)12 void nrf_rramc_erase_all_set(NRF_RRAMC_Type * p_reg)
13 {
14     p_reg->ERASE.ERASEALL = RRAMC_ERASE_ERASEALL_ERASE_Erase;
15     nhw_RRAMC_regw_sideeffects_ERASEALL(0);
16 }
17 
18 /* Note that tasks and events are not implemented in the HW model */
19