view test/bare/test.ld @ 396:fb3c1f029b30

Added baselexer into c3 lexer
author Windel Bouwman
date Tue, 27 May 2014 22:19:32 +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 = .;
}