ENTRY(_start) SECTIONS { . = 0x10000; .text : { *(.text) } .data : ALIGN(0x1000) { *(.data) } .bss : ALIGN(0x1000) { *(.bss) } }