From c861c7cd70959f9d6154d1b5541cc5cd57f030ba Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 15 Jan 2018 13:51:38 -0700 Subject: Added system-clock files including the genmake script. --- system-clock/linker_script.ld | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 system-clock/linker_script.ld (limited to 'system-clock/linker_script.ld') diff --git a/system-clock/linker_script.ld b/system-clock/linker_script.ld new file mode 100644 index 0000000..fe0c14b --- /dev/null +++ b/system-clock/linker_script.ld @@ -0,0 +1,14 @@ +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 +} -- cgit