Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/sim/testsuite/bfin/se_all32bitopcodes.lds
2023-03-06 14:48:14 +01:00

16 lines
316 B
Text

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
}