1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * Allocate buffers which can be used in place of the real device RAMs. 9 * See NHW_misc.c, and nhw_convert_RAM_addr() 10 */ 11 12 #include "NHW_config.h" 13 14 #if defined(NRF5340) || defined(NRF5340_XXAA_NETWORK) || defined(NRF5340_XXAA_APPLICATION) 15 __attribute__((__section__("virt_RAM.appcore_RAM"))) char NHW_appcore_RAM[NHW_APPCORE_RAM_SIZE]; 16 #endif 17