From 643208f4898400fb04bf0773c388551f58b0b5bf Mon Sep 17 00:00:00 2001 From: Matthias Hannig Date: Fri, 13 Jul 2018 16:13:00 +0200 Subject: added bluefnorf skeleton --- bluefnorf/stm32f103c8t6.ld | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bluefnorf/stm32f103c8t6.ld (limited to 'bluefnorf/stm32f103c8t6.ld') diff --git a/bluefnorf/stm32f103c8t6.ld b/bluefnorf/stm32f103c8t6.ld new file mode 100644 index 0000000..f70bbb7 --- /dev/null +++ b/bluefnorf/stm32f103c8t6.ld @@ -0,0 +1,14 @@ + +__estack = 0x20005000; + + +MEMORY +{ + rom (rx) : ORIGIN = 0x08000000, LENGTH = 64K + ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K +} + + +/* Include the common ld script. */ +INCLUDE cortex-m-generic.ld + -- cgit