view test/bare/test.ld @ 410:6aa9743ed362 tip

Reflect change in c3 public modifier
author Windel Bouwman
date Mon, 23 Feb 2015 21:06:04 +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 = .;
}