/* Dump everything into RAM */ SECTIONS { . = 0x10000400; .text : { *(.text) } .vectors : { *(.vectors) } .data : { *(.data) } .bss : { *(.bss) } }