1 /*
2  * Copyright (c) 2024 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #include <stdbool.h>
7 #include "NHW_misc.h"
8 
native_emb_addr_remap(void ** addr)9 bool native_emb_addr_remap(void **addr)
10 {
11 	return nhw_convert_RAM_addr(addr);
12 }
13