]> nv-tegra.nvidia Code Review - linux-2.6.git/blob - arch/v850/kernel/sim.ld
[PATCH] V850: C99 initializers for hw_interrupt_type structures
[linux-2.6.git] / arch / v850 / kernel / sim.ld
1 /* Linker script for the gdb v850e simulator (CONFIG_V850E_SIM).  */
2
3 MEMORY {
4         /* Interrupt vectors.  */
5         INTV  : ORIGIN = 0x0, LENGTH = 0xe0
6         /* Main RAM.  */
7         RAM   : ORIGIN = RAM_ADDR, LENGTH = RAM_SIZE
8 }
9
10 SECTIONS {
11         .intv : { INTV_CONTENTS } > INTV
12         .ram : { RAMK_KRAM_CONTENTS } > RAM
13 }