view experiments/qemu_vexpress_a9/layout.ld @ 387:34ac19044b8a

Hello world with paging in emulator
author Windel Bouwman
date Thu, 01 May 2014 22:09:18 +0200
parents 2a970e7270e2
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 = .;
}