Basic linker script

This commit is contained in:
Imbus 2024-04-05 17:04:19 +02:00
parent 0e259f27bd
commit a63046569d

16
link.ld Normal file
View file

@ -0,0 +1,16 @@
MEMORY {
SRAM (rwx) : ORIGIN = 0x20000000, LENGTH = 1024
DRAM (rwx) : ORIGIN = 0x80000000, LENGTH = 1024
}
SECTIONS {
.text : {
*(.text)
} > SRAM
.data : {
*(.data)
} > DRAM AT > SRAM
.bss : {
*(.bss)
} > DRAM
}