view experiments/qemu_vexpress_a9/layout.ld @ 340:c7cc54c0dfdf devel

Test featurebranch
author Windel Bouwman
date Sun, 23 Feb 2014 16:24:01 +0100
parents
children 2a970e7270e2
line wrap: on
line source


ENTRY(_Reset)

SECTIONS
{
 . = 0x60010000;
 .startup . : { startup.o(.text) }
 .text : {*(.text)}
 .data : {*(.data)}
 .bss : {*(.bss)}
 . = . + 0x1000;
 stack_top = .;
}