Mercurial > lcfOS
view test/bare/test.ld @ 385:d056b552d3f4
Made better use of layout
author | Windel Bouwman |
---|---|
date | Thu, 01 May 2014 14:03:12 +0200 |
parents | ed6d0adaa626 |
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 = .; }