comparison 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
comparison
equal deleted inserted replaced
339:6ee17c4dd6b8 340:c7cc54c0dfdf
1
2 ENTRY(_Reset)
3
4 SECTIONS
5 {
6 . = 0x60010000;
7 .startup . : { startup.o(.text) }
8 .text : {*(.text)}
9 .data : {*(.data)}
10 .bss : {*(.bss)}
11 . = . + 0x1000;
12 stack_top = .;
13 }
14