Mercurial > lcfOS
view test/bare/test.ld @ 381:6df89163e114
Fix section and ldr pseudo instruction
author | Windel Bouwman |
---|---|
date | Sat, 26 Apr 2014 17:41:56 +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 = .; }