aboutsummaryrefslogtreecommitdiff
path: root/00-hello/linker_script.ld
diff options
context:
space:
mode:
Diffstat (limited to '00-hello/linker_script.ld')
-rw-r--r--00-hello/linker_script.ld14
1 files changed, 0 insertions, 14 deletions
diff --git a/00-hello/linker_script.ld b/00-hello/linker_script.ld
deleted file mode 100644
index fe0c14b..0000000
--- a/00-hello/linker_script.ld
+++ /dev/null
@@ -1,14 +0,0 @@
-MEMORY
-{
- flash : org = 0x08000000, len = 256k
-}
-
-SECTIONS
-{
- /* This is where the code goes. */
- . = ORIGIN(flash);
- .text : {
- *(.vectors); /* All .vector sections go here. */
- *(.text); /* All .text sections go here. */
- } >flash
-}