Mercurial > lcfOS
view test/bare/test.ld @ 324:ed6d0adaa626
Added qemu arm emulated image
author | Windel Bouwman |
---|---|
date | Fri, 31 Jan 2014 12:45:17 +0100 |
parents | |
children |
line wrap: on
line source
ENTRY(_Reset) SECTIONS { . = 0x10000; .startup . : {startup.o(.text) } .text : { *(.text) } .data : { *(.data) } .bss : { *(.bss COMMON) } . = ALIGN(8); . = . + 0x1000; stack_top = .; }