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 --- system-clock/linker/linker_script.ld | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 system-clock/linker/linker_script.ld (limited to 'system-clock/linker') diff --git a/system-clock/linker/linker_script.ld b/system-clock/linker/linker_script.ld deleted file mode 100644 index 348d03b..0000000 --- a/system-clock/linker/linker_script.ld +++ /dev/null @@ -1,36 +0,0 @@ -MEMORY -{ - flash : org = 0x08000000, len = 256k - sram1 : org = 0x20000000, len = 48k - sram2 : org = 0x10000000, len = 16k -} - -SECTIONS -{ - /* This is where the code goes. */ - . = ORIGIN(flash); - .text : { - *(.vectors); /* All .vector sections go here. */ - *(.text); /* All .text sections go here. */ - } >flash - - .data : { - /* Data segment as defined in the flash. */ - INIT_DATA_VALUES = LOADADDR(.data); - - /* Data segment where it will be in memory. */ - DATA_SEGMENT_START = .; - *(.data); - DATA_SEGMENT_STOP = .; - - /* Align by 4 so we can optimize the copier to use uint32's. */ - . = ALIGN(0x04); - } >sram1 AT>flash - - BSS_START = .; - .bss : { - *(.bss); - . = ALIGN(0x04); - } > sram1 - BSS_END = .; -} -- cgit