From 7aa10db46c13ad8adc88aadff39b8cf6b15db09d Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 23 Jan 2018 23:14:31 -0700 Subject: rename folders to give notion of progression --- 00-hello/linker_script.ld | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create 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 new file mode 100644 index 0000000..fe0c14b --- /dev/null +++ b/00-hello/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