From 93b063fedfcf7409a67df035170ea5670cad22e1 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 24 Nov 2020 13:46:41 -0700 Subject: Moved action to top level. Removed old iterations of the project and moved the files from 02-usart to the root directory since that's the sole place where the action is and that subproject has outgrown its initial title. --- 00-hello/linker_script.ld | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 00-hello/linker_script.ld (limited to '00-hello/linker_script.ld') 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 -} -- cgit