OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 421 to Rev 422
    Reverse comparison

Rev 421 → Rev 422

/trunk/or1ksim/testbench/except.ld
1,32 → 1,35
MEMORY
{
flash : ORIGIN = 0x00000000, LENGTH = 0x00010000
ram : ORIGIN = 0x40000000, LENGTH = 0x00100000
except : ORIGIN = 0x00000000, LENGTH = 0x00002000
flash : ORIGIN = 0x00002000, LENGTH = 0x001fe000
ram : ORIGIN = 0x40000000, LENGTH = 0x00200000
}
SECTIONS
{
.except :
.except :
{
*(.except)
} > flash
.text :
{
} > except
.text :
{
*(.text)
_src_beg = .;
} > ram
.data :
} > flash
.data :
AT ( ADDR (.text) + SIZEOF (.text) )
{
_dst_beg = .;
*(.data)
_dst_end = .;
} > ram
.bss :
.bss :
{
*(.bss)
} > ram
.stack :
.stack ALIGN(0x10) (NOLOAD):
{
*(.stack)
_ram_end = .;
} > ram
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.