aboutsummaryrefslogtreecommitdiffstats
path: root/arch/v850/kernel/sim.ld
blob: 101885f3c9f08fde092adb204c29d7c5bdc7e25b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Linker script for the gdb v850e simulator (CONFIG_V850E_SIM).  */

MEMORY {
	/* Interrupt vectors.  */
	INTV  : ORIGIN = 0x0, LENGTH = 0xe0
	/* Main RAM.  */
	RAM   : ORIGIN = RAM_ADDR, LENGTH = RAM_SIZE
}

SECTIONS {
	.intv : { INTV_CONTENTS } > INTV
	.ram : { RAMK_KRAM_CONTENTS } > RAM
}