aboutsummaryrefslogtreecommitdiffstats
path: root/link.ld
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-10-05 12:13:49 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-10-05 12:13:49 -0400
commitf529a3b0f8ee24229997e995021a2ee8cb25f065 (patch)
treee420a1ad98cc2efb2fbd9ccc566bdb131d200b8c /link.ld
initial commit
Diffstat (limited to 'link.ld')
-rw-r--r--link.ld44
1 files changed, 44 insertions, 0 deletions
diff --git a/link.ld b/link.ld
new file mode 100644
index 0000000..403ba71
--- /dev/null
+++ b/link.ld
@@ -0,0 +1,44 @@
+ENTRY(_start)
+
+/* description of memory regions */
+MEMORY {
+ FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 1024K
+ RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 96K
+}
+
+/* description of ELF sections */
+SECTIONS {
+ .text : {
+ . = ALIGN(8);
+ *(.isr_vector)
+ *(.text)
+ *(.text*)
+ } > FLASH
+
+ /* read-only data sections */
+ .rodata : {
+ . = ALIGN(8);
+ *(.rodata)
+ *(.rodata*)
+ } > FLASH
+
+ /* initialized data */
+ _sidata = LOADADDR(.data);
+ .data : {
+ . = ALIGN(8);
+ _sdata = .;
+ *(.data)
+ . = ALIGN(8);
+ _edata = .;
+ } > RAM AT > FLASH
+
+ /* uninitialized data */
+ .bss : {
+ . = ALIGN(8);
+ _sbss = .;
+ *(.bss)
+ . = ALIGN(8);
+ _ebss = .;
+ } > RAM
+}
+