summaryrefslogtreecommitdiff
path: root/src/generated.stm32f103c8.ld
diff options
context:
space:
mode:
authorPhysick <96335032+DegustatorPonos@users.noreply.github.com>2025-12-18 19:39:54 +0500
committerPhysick <96335032+DegustatorPonos@users.noreply.github.com>2025-12-18 19:39:54 +0500
commitd62a1911e5cc79a8c7a550c797e06766ec666a22 (patch)
tree90c93732fc29bc759dc42e2281a0902bd139b2fe /src/generated.stm32f103c8.ld
parentf5a4d7946ab7f1314cae4b6641568fb1eaad1dee (diff)
Cleanup
Diffstat (limited to 'src/generated.stm32f103c8.ld')
-rw-r--r--src/generated.stm32f103c8.ld69
1 files changed, 0 insertions, 69 deletions
diff --git a/src/generated.stm32f103c8.ld b/src/generated.stm32f103c8.ld
deleted file mode 100644
index 7b7234a..0000000
--- a/src/generated.stm32f103c8.ld
+++ /dev/null
@@ -1,69 +0,0 @@
-EXTERN(vector_table)
-ENTRY(reset_handler)
-MEMORY
-{
- ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
- rom (rx) : ORIGIN = 0x08000000, LENGTH = 64K
-}
-SECTIONS
-{
- .text : {
- *(.vectors)
- *(.text*)
- . = ALIGN(4);
- *(.rodata*)
- . = ALIGN(4);
- } >rom
- .preinit_array : {
- . = ALIGN(4);
- __preinit_array_start = .;
- KEEP (*(.preinit_array))
- __preinit_array_end = .;
- } >rom
- .init_array : {
- . = ALIGN(4);
- __init_array_start = .;
- KEEP (*(SORT(.init_array.*)))
- KEEP (*(.init_array))
- __init_array_end = .;
- } >rom
- .fini_array : {
- . = ALIGN(4);
- __fini_array_start = .;
- KEEP (*(.fini_array))
- KEEP (*(SORT(.fini_array.*)))
- __fini_array_end = .;
- } >rom
- .ARM.extab : {
- *(.ARM.extab*)
- } >rom
- .ARM.exidx : {
- __exidx_start = .;
- *(.ARM.exidx*)
- __exidx_end = .;
- } >rom
- . = ALIGN(4);
- _etext = .;
- .noinit (NOLOAD) : {
- *(.noinit*)
- } >ram
- . = ALIGN(4);
- .data : {
- _data = .;
- *(.data*)
- *(.ramtext*)
- . = ALIGN(4);
- _edata = .;
- } >ram AT >rom
- _data_loadaddr = LOADADDR(.data);
- .bss : {
- *(.bss*)
- *(COMMON)
- . = ALIGN(4);
- _ebss = .;
- } >ram
- /DISCARD/ : { *(.eh_frame) }
- . = ALIGN(4);
- end = .;
-}
-PROVIDE(_stack = ORIGIN(ram) + LENGTH(ram));