31 lines
337 B
Plaintext
31 lines
337 B
Plaintext
|
/*#OUTPUT_FORMAT(elf32-us-cris) */
|
||
|
OUTPUT_ARCH (crisv32)
|
||
|
|
||
|
MEMORY
|
||
|
{
|
||
|
dram : ORIGIN = 0x40700000,
|
||
|
LENGTH = 0x00100000
|
||
|
}
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text :
|
||
|
{
|
||
|
_stext = . ;
|
||
|
*(.text)
|
||
|
*(.rodata)
|
||
|
*(.rodata.*)
|
||
|
_etext = . ;
|
||
|
} > dram
|
||
|
.data :
|
||
|
{
|
||
|
*(.data)
|
||
|
_edata = . ;
|
||
|
} > dram
|
||
|
.bss :
|
||
|
{
|
||
|
*(.bss)
|
||
|
_end = ALIGN( 0x10 ) ;
|
||
|
} > dram
|
||
|
}
|