aboutsummaryrefslogtreecommitdiff
path: root/sim/testsuite/bfin/se_all32bitopcodes.lds
blob: 6f37d657b77bac970cda932b0ab06e637f95a80d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
MEMORY
{
  L1_CODE : ORIGIN = 0xFFA00000, LENGTH = 0x8000
  L1_DATA : ORIGIN = 0xFF800000, LENGTH = 0x8000
  SDRAM : ORIGIN = 0x4000, LENGTH = 0x4000000
}

OUTPUT_ARCH(bfin)
ENTRY(__start)

SECTIONS
{
	.text     : { *(.text)     } >L1_CODE
	.text.usr : { *(.text.usr) } >SDRAM
	.data     : { *(.data)     } >SDRAM
}