/* * Linker script for STM32. * Maple mini linker script bare metal target linker script. */ /* * Define memory spaces. */ MEMORY { ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K rom (rx) : ORIGIN = 0x08000000, LENGTH = 128K } /* * Use medium density device vector table */ GROUP(libcs3_stm32_med_density.a) REGION_ALIAS("REGION_TEXT", rom); REGION_ALIAS("REGION_DATA", ram); REGION_ALIAS("REGION_BSS", ram); /* * Define the rest of the sections */ INCLUDE common_rom.inc