diff options
author | Anton Eltchaninov <anton.eltchaninov@gmail.com> | 2012-04-26 11:17:40 +0700 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2012-05-03 14:09:05 -0400 |
commit | a81a02257d69454412d4ef062b56a3cc5c758815 (patch) | |
tree | f8d9fc43d4f85efb6542235713cf7a931bdb0f26 /support/ld/VLDiscovery/ram.ld | |
parent | 6ae19973da18ae67db0f0495c6b3cdf44797e2c8 (diff) | |
download | librambutan-a81a02257d69454412d4ef062b56a3cc5c758815.tar.gz librambutan-a81a02257d69454412d4ef062b56a3cc5c758815.zip |
STM32VLDiscovery support files
Signed-off-by: Anton Eltchaninov <anton.eltchaninov@gmail.com>
Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'support/ld/VLDiscovery/ram.ld')
-rw-r--r-- | support/ld/VLDiscovery/ram.ld | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/support/ld/VLDiscovery/ram.ld b/support/ld/VLDiscovery/ram.ld new file mode 100644 index 0000000..d659cd6 --- /dev/null +++ b/support/ld/VLDiscovery/ram.ld @@ -0,0 +1,22 @@ +/* + * VLDiscovery (STM32F100RBT6, medium density) linker script for RAM builds. + */ + +/* + * Define memory spaces. + */ +MEMORY +{ + ram (rwx) : ORIGIN = 0x20000000, LENGTH = 8K + rom (rx) : ORIGIN = 0x08000000, LENGTH = 0K +} + +REGION_ALIAS("REGION_TEXT", ram); +REGION_ALIAS("REGION_DATA", ram); +REGION_ALIAS("REGION_BSS", ram); +REGION_ALIAS("REGION_RODATA", ram); + +/* + * Define the rest of the sections + */ +INCLUDE common.inc |