From 8e20f53dd3b33058508ff51bd19e49df19b06fb7 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 15 Jan 2018 14:46:12 -0700 Subject: reorganize sources into src and include directories. --- system-clock/linker_script.ld | 14 -------------- 1 file changed, 14 deletions(-) delete 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 deleted file mode 100644 index fe0c14b..0000000 --- a/system-clock/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 -} -- cgit