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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [OpenRISC_SIM_GCC/] [arch/] [link.ld] - Rev 623

Compare with Previous | Blame | View Log

MEMORY
{
        vectors : ORIGIN = 0x00000000, LENGTH = 0x00001000
        ram     : ORIGIN = 0x00001000, LENGTH = 0x00080000 - 0x00001000  
}

SECTIONS
{
        .vectors :
        {
                _vec_start = .;
                *(.vectors)
                _vec_end = .;
        } > vectors

        .text ALIGN(4) :
        {
                *(.text)
        } > ram

        .rodata ALIGN(4) :
        {
                *(.rodata)
                *(.rodata.*)
        } > ram

        .icm ALIGN(4) :
        {
                _icm_start = .;
                *(.icm)
                _icm_end = .;
        } > ram

        .data ALIGN(4) :
        {
                _dst_beg = .;
                *(.data)
                _dst_end = .;
        } > ram

        .bss ALIGN(4) :
        {
                _bss_beg = .;
                *(.bss)
                _bss_end = .;
        } > ram

        PROVIDE(_stack_top = 0x00080000);
}

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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