view test/bare/test.ld @ 371:9c95f93f5b7a

Python 3.2 compatible issues
author Windel Bouwman
date Fri, 21 Mar 2014 12:01:19 +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 = .;
}