view experiments/qemu_vexpress_a9/layout.ld @ 396:fb3c1f029b30

Added baselexer into c3 lexer
author Windel Bouwman
date Tue, 27 May 2014 22:19:32 +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 = .;
}