diff experiments/qemu_vexpress_a9/layout.ld @ 386:2a970e7270e2

Added repeat assembler macro
author Windel Bouwman
date Thu, 01 May 2014 17:40:59 +0200
parents c7cc54c0dfdf
children 34ac19044b8a
line wrap: on
line diff
--- a/experiments/qemu_vexpress_a9/layout.ld	Thu May 01 14:03:12 2014 +0200
+++ b/experiments/qemu_vexpress_a9/layout.ld	Thu May 01 17:40:59 2014 +0200
@@ -3,10 +3,14 @@
 
 SECTIONS
 {
- . = 0x60010000;
- .startup . : { startup.o(.text) }
+ . = 0x0010000;
+ .startup . : { startup.o(.init) }
  .text : {*(.text)}
- .data : {*(.data)}
+ . = ALIGN(0x4000);
+ .data : {
+    *(.padata)
+    *(.data)
+   }
  .bss : {*(.bss)}
  . = . + 0x1000;
  stack_top = .;