view experiments/qemu_vexpress_a9/layout.ld @ 394:988f3fb861e4

c3 code generator rewrite
author Windel Bouwman
date Thu, 22 May 2014 08:14:12 +0200
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 = .;
}