URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [or1ksim/] [testbench/] [cache.ld] - Rev 622
Go to most recent revision | Compare with Previous | Blame | View Log
MEMORY
{
except : ORIGIN = 0x00000000, LENGTH = 0x00002000
ram : ORIGIN = 0x00002000, LENGTH = 0x00200000-0x2000
}
SECTIONS
{
.except :
{
*(.except)
} > except
.text :
{
*(.text)
_src_beg = .;
} > ram
.data :
{
*(.data)
_dst_beg = .;
_dst_end = .;
} > ram
.bss :
{
*(.bss)
} > ram
.stack ALIGN(0x10) (NOLOAD):
{
*(.stack)
_ram_end = .;
} > ram
}
Go to most recent revision | Compare with Previous | Blame | View Log