view test/bare/test.ld @ 332:87feb8a23b4d

Added task list command
author Windel Bouwman
date Fri, 07 Feb 2014 12:51:55 +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 = .;
}