xref: /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/bfin/se_all32bitopcodes.lds (revision d16b7486a53dcb8072b60ec6fcb4373a2d0c27b7)
1MEMORY
2{
3  L1_CODE : ORIGIN = 0xFFA00000, LENGTH = 0x8000
4  L1_DATA : ORIGIN = 0xFF800000, LENGTH = 0x8000
5  SDRAM : ORIGIN = 0x4000, LENGTH = 0x4000000
6}
7
8OUTPUT_ARCH(bfin)
9ENTRY(__start)
10
11SECTIONS
12{
13	.text     : { *(.text)     } >L1_CODE
14	.text.usr : { *(.text.usr) } >SDRAM
15	.data     : { *(.data)     } >SDRAM
16}
17