URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [mp3/] [sw/] [console-xess/] [xess.ld] - Rev 1773
Go to most recent revision | Compare with Previous | Blame | View Log
MEMORY
{
reset : ORIGIN = 0x00000100, LENGTH = 0x00001f00
ram : ORIGIN = 0x80000000, LENGTH = 0x00200000
}
SECTIONS
{
.reset :
AT ( 0x00000100 )
{
*(.reset)
_src_beg = .;
} > reset
.text :
AT ( ADDR (.reset) + SIZEOF (.reset) )
{
_dst_beg = .;
*(.text)
} > ram
.data :
AT ( ADDR (.reset) + SIZEOF (.reset) + SIZEOF (.text))
{
*(.data)
_dst_end = .;
} > ram
.bss :
{
*(.bss)
} > reset
}
Go to most recent revision | Compare with Previous | Blame | View Log