view experiments/qemu_vexpress_a9/layout.ld @ 410:6aa9743ed362 tip

Reflect change in c3 public modifier
author Windel Bouwman
date Mon, 23 Feb 2015 21:06:04 +0100
parents 34ac19044b8a
children
line wrap: on
line source


ENTRY(_Reset)

SECTIONS
{
 . = 0x010000;
 .startup . : { startup.o(.init) }
 .text : {*(.text)}
 . = ALIGN(0x4000);
 .data : {
    *(.padata)
    *(.data)
   }
 .bss : {*(.bss)}
 . = . + 0x1000;
 stack_top = .;
}