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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [bootloaders/] [orpmon/] [ram.ld] - Diff between revs 353 and 375

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 353 Rev 375
Line 1... Line 1...
 
 
/* Seen 3 bad pages, 180-182 (0xb400-0xb6ff), so put text after these pages */
 
 
 
MEMORY
MEMORY
        {
        {
        vectors : ORIGIN = 0x00000000, LENGTH = 0x00002000
        vectors : ORIGIN = 0x00000000, LENGTH = 0x00002000
 
        /* Use all RAM */
 
        /* Put all sections into ram */
 
        /*
        ram     : ORIGIN = 0x00002000, LENGTH = 0x02000000 - 0x00002000
        ram     : ORIGIN = 0x00002000, LENGTH = 0x02000000 - 0x00002000
 
        */
 
        /* Uncomment the following to work around bad pages in a flash mem */
 
        /* Put all sections except data, rodata into ram2 */
 
        /* On ORSoC dev board devices, for pages 132-134 (256Byte pages) */
 
        ram     : ORIGIN = 0x00001200, LENGTH = 0x8400 - 0x1200
 
        ram2     : ORIGIN = 0x8700, LENGTH = 0x02000000 - 0x8700
 
 
        /* Uncomment the following to work around bad pages in a flash mem */
        /* Uncomment the following to work around bad pages in a flash mem */
 
        /* Put all sections except data, rodata into ram2 */
 
        /* On ORSoC dev board devices, for pages 180-182 (256Byte pages) */
        /*
        /*
        ram     : ORIGIN = 0x00001200, LENGTH = 0xB400 - 0x1200
        ram     : ORIGIN = 0x00001200, LENGTH = 0xB400 - 0x1200
        ram2     : ORIGIN = 0xb700, LENGTH = 0x02000000 - 0xb700
        ram2     : ORIGIN = 0xb700, LENGTH = 0x02000000 - 0xb700
        */
        */
        /*flash   : ORIGIN = 0xf0000000, LENGTH = 0x04000000*/
        /*flash   : ORIGIN = 0xf0000000, LENGTH = 0x04000000*/
Line 27... Line 37...
        .text :
        .text :
        {
        {
        _text_begin = .;
        _text_begin = .;
        *(.text)
        *(.text)
        _text_end = .;
        _text_end = .;
        } > ram
        } > ram2
 
 
        .data :
        .data :
/*      AT ( ADDR (.text) + SIZEOF(.text) + SIZEOF(.mytext))*/
/*      AT ( ADDR (.text) + SIZEOF(.text) + SIZEOF(.mytext))*/
        {
        {
        *(.data)
        *(.data)
Line 44... Line 54...
        } > ram
        } > ram
 
 
        .bss :
        .bss :
        {
        {
        *(.bss)
        *(.bss)
        } > ram
        } > ram2
 
 
        .stack :
        .stack :
        {
        {
        *(.stack)
        *(.stack)
        _src_addr = .;
        _src_addr = .;
        } > ram
        } > ram2
/*
/*
        .monitor :
        .monitor :
        {
        {
        *(.monitor)
        *(.monitor)
        } > ram
        } > ram

powered by: WebSVN 2.1.0

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