diff --git a/link.ld b/link.ld new file mode 100644 index 0000000..845c0a3 --- /dev/null +++ b/link.ld @@ -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 +}