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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [or1ksim/] [testsuite/] [test-code-or1k/] [except-mc.ld] - Diff between revs 90 and 458

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 90 Rev 458
/* except-mc.ld. Linker script for Or1ksim memory controller test programs
/* except-mc.ld. Linker script for Or1ksim memory controller test programs
   Copyright (C) 1999-2006 OpenCores
   Copyright (C) 1999-2006 OpenCores
   Copyright (C) 2010 Embecosm Limited
   Copyright (C) 2010 Embecosm Limited
   Contributors various OpenCores participants
   Contributors various OpenCores participants
   Contributor Jeremy Bennett 
   Contributor Jeremy Bennett 
   This file is part of OpenRISC 1000 Architectural Simulator.
   This file is part of OpenRISC 1000 Architectural Simulator.
   This program is free software; you can redistribute it and/or modify it
   This program is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the Free
   under the terms of the GNU General Public License as published by the Free
   Software Foundation; either version 3 of the License, or (at your option)
   Software Foundation; either version 3 of the License, or (at your option)
   any later version.
   any later version.
   This program is distributed in the hope that it will be useful, but WITHOUT
   This program is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   more details.
   more details.
   You should have received a copy of the GNU General Public License along
   You should have received a copy of the GNU General Public License along
   with this program.  If not, see .  */
   with this program.  If not, see .  */
/* ----------------------------------------------------------------------------
/* ----------------------------------------------------------------------------
   This code is commented throughout for use with Doxygen.
   This code is commented throughout for use with Doxygen.
   --------------------------------------------------------------------------*/
   --------------------------------------------------------------------------*/
MEMORY
MEMORY
        {
        {
        except : ORIGIN = 0x00000000, LENGTH = 0x00002000
        except : ORIGIN = 0x00000000, LENGTH = 0x00002000
        flash  : ORIGIN = 0xf0000000, LENGTH = 0x00200000
        flash  : ORIGIN = 0xf0000000, LENGTH = 0x00200000
        ram    : ORIGIN = 0x00002000, LENGTH = 0x001fe000
        ram    : ORIGIN = 0x00002000, LENGTH = 0x001fe000
        }
        }
ENTRY (_reset_vector)
ENTRY (_reset_vector)
SECTIONS
SECTIONS
{
{
        .except :
        .except :
        {
        {
        *(.except)
        *(.except)
         _src_beg = .;
         _src_beg = .;
        } > except
        } > except
        .text :
        .text :
        AT ( ADDR (.except) + SIZEOF (.except) )
        AT ( ADDR (.except) + SIZEOF (.except) )
        {
        {
        _dst_beg = .;
        _dst_beg = .;
        *(.text)
        *(.text)
        *(.rodata)
        *(.rodata)
 
        *(.rodata.*)
        } > ram
        } > ram
        .data :
        .data :
        AT ( ADDR (.except) + SIZEOF (.except) + SIZEOF (.text))
        AT ( ADDR (.except) + SIZEOF (.except) + SIZEOF (.text))
        {
        {
        *(.data)
        *(.data)
        *(.data.rel)
        *(.data.rel)
        *(.data.rel.local)
        *(.data.rel.local)
        _dst_end = .;
        _dst_end = .;
        } > ram
        } > ram
        .bss :
        .bss :
        {
        {
        *(.bss)
        *(.bss)
        } > ram
        } > ram
        .stack  ALIGN(0x10) (NOLOAD):
        .stack  ALIGN(0x10) (NOLOAD):
        {
        {
        *(.stack)
        *(.stack)
        _ram_end = .;
        _ram_end = .;
        } > ram
        } > ram
}
}
 
 

powered by: WebSVN 2.1.0

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