aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchrysn2013-01-10 11:42:32 +0100
committerchrysn2013-01-10 11:42:32 +0100
commit20bfcaeb1c773012f1c41e004915b72f6abba352 (patch)
tree88a413ff6e63855146f78a1aa60004db6e33e02e
parentc2437246760010e600369525acf599a8c5d83cdf (diff)
efm32gg990f1024: added linker script
-rw-r--r--lib/efm32/efm32gg/libopencm3_efm32gg990f1024.ld15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/efm32/efm32gg/libopencm3_efm32gg990f1024.ld b/lib/efm32/efm32gg/libopencm3_efm32gg990f1024.ld
new file mode 100644
index 0000000..694e17a
--- /dev/null
+++ b/lib/efm32/efm32gg/libopencm3_efm32gg990f1024.ld
@@ -0,0 +1,15 @@
+/* lengths from d046_efm32gg990_datasheet.pdf table 1.1, offset from
+ * d0034_efm32tg_reference_manual.pdf figure 5.2.
+ *
+ * the origins and memory structure are constant over all giantgeckos, but the
+ * MEMORY section requires the use of constants, and has thus to be duplicated
+ * over the chip variants.
+ * */
+
+MEMORY
+{
+ rom (rx) : ORIGIN = 0, LENGTH = 1024k
+ ram (rwx) : ORIGIN = 0x20000000, LENGTH = 128k
+}
+
+INCLUDE libopencm3_efm32gg.ld;