aboutsummaryrefslogtreecommitdiffstats
path: root/support/ld/maple_RET6/ram.ld
blob: f09acd93068749db5685fc320cbced29435c8daa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * STM32F103RET6 high density chip linker script for use with Maple
 * bootloader.  Loads to RAM. 
 */

MEMORY
{
  ram (rwx) : ORIGIN = 0x20000C00, LENGTH = 61K
  rom (rx)  : ORIGIN = 0x08005000, LENGTH = 0K
}

GROUP(libcs3_stm32_high_density.a)

REGION_ALIAS("REGION_TEXT", ram);
REGION_ALIAS("REGION_DATA", ram);
REGION_ALIAS("REGION_BSS", ram);

INCLUDE common_ram.inc