X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=example%2Flcd%2Flinker_stm32l.lds;fp=example%2Flcd%2Flinker_stm32l.lds;h=0000000000000000000000000000000000000000;hb=3ec53a0d34016839cf6583117dd549da88aa63c7;hp=58b894f03c25296935386f225a1a974d20584507;hpb=29cf5d590c76ef157d9697a5871b12b8af770f00;p=fw%2Fstlink diff --git a/example/lcd/linker_stm32l.lds b/example/lcd/linker_stm32l.lds deleted file mode 100644 index 58b894f..0000000 --- a/example/lcd/linker_stm32l.lds +++ /dev/null @@ -1,54 +0,0 @@ -OUTPUT_FORMAT("elf32-littlearm") -ENTRY(_main) - -MEMORY -{ - sram : ORIGIN = 0x20000000, LENGTH = 0x4000 -} - -SECTIONS -{ - .text(ORIGIN(sram)): - { - _main = .; - _ftext = .; - *(.text .stub .text.* .gnu.linkonce.t.*) - _etext = .; - } > sram - - .rodata : - { - . = ALIGN(4); - _frodata = .; - *(.rodata .rodata.* .gnu.linkonce.r.*) - *(.rodata1) - _erodata = .; - } > sram - - .data : - { - . = ALIGN(4); - _fdata = .; - *(.data .data.* .gnu.linkonce.d.*) - *(.data1) - _gp = ALIGN(16); - *(.sdata .sdata.* .gnu.linkonce.s.*) - _edata = .; - } > sram - - .bss : - { - . = ALIGN(4); - _fbss = .; - *(.dynsbss) - *(.sbss .sbss.* .gnu.linkonce.sb.*) - *(.scommon) - *(.dynbss) - *(.bss .bss.* .gnu.linkonce.b.*) - *(COMMON) - _ebss = .; - _end = .; - } > sram -} - -PROVIDE(_fstack = ORIGIN(sram) + LENGTH(sram) - 4);