1OUTPUT_FORMAT(elf32-us-cris)
2
3MEMORY 
4	{
5	dram : ORIGIN = 0x40700000,
6	       LENGTH = 0x00100000
7	}
8
9SECTIONS
10{
11	.text :
12	{
13		_stext = . ;
14		*(.text)
15		*(.rodata)
16		_etext = . ;
17	} > dram
18	.data :
19	{
20		*(.data)
21		_edata = . ;
22	} > dram
23	.bss :
24	{
25		*(.bss)
26		_end = ALIGN( 0x10 ) ;
27	} > dram
28}
29