view test/bare/test.ld @ 405:f381cea07fec

merge
author Windel Bouwman
date Thu, 19 Feb 2015 14:10:52 +0100
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 = .;
}