1/* 2 * Copyright (c) 2024 STMicroelectronics 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/** Refer to `soc.c` for more information about these areas. */ 8SECTION_PROLOGUE(stm32wb0_RAM_VR, 0x20000000 (NOLOAD), ) 9{ 10 /* For historical reasons, leave the first word of 11 * SRAM0 unused, even though it could store data. 12 * The structure MUST start at address 0x2000_0004. 13 */ 14 . += 4; 15 16 KEEP(*(stm32wb0_RAM_VR)); 17} GROUP_LINK_IN(RAMABLE_REGION) 18 19SECTION_PROLOGUE(stm32wb0_BLUE_RAM, 0x200000C0 (NOLOAD), ) 20{ 21 KEEP(*(stm32wb0_BLUE_RAM)); 22} GROUP_LINK_IN(RAMABLE_REGION) 23