OUTPUT_FORMAT(binary) SECTIONS { . = 0x01000000; .text : { main = .; *(.text) } .rodata : { *(.rodata) } .data : { *(.data) } .bss : { *(.bss) } }