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

Subversion Repositories test_project

[/] [test_project/] [trunk/] [sw/] [support/] [orp.ld] - Diff between revs 31 and 33

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

Rev 31 Rev 33
Line 7... Line 7...
        icm     : ORIGIN = 0x00800000, LENGTH = 0x00004000
        icm     : ORIGIN = 0x00800000, LENGTH = 0x00004000
        }
        }
 */
 */
MEMORY
MEMORY
        {
        {
        ram     : ORIGIN = 0x00000000, LENGTH = 0x01000000
        reset   : ORIGIN = 0x00000000, LENGTH = 0x00000200
 
        vectors : ORIGIN = 0x00000200, LENGTH = 0x00001000
 
        ram     : ORIGIN = 0x00001200, LENGTH = 0x00FFED00
        }
        }
 
 
SECTIONS
SECTIONS
{
{
.reset :
.reset :
        {
        {
        *(.reset)
        *(.reset)
        } > ram
        } > reset
 
 
 
 
      .dummy ALIGN(0x04):
 
        {
 
        _src_beg = .;
 
        } > ram
 
 
 
      .vectors :
      .vectors :
        AT ( ADDR (.dummy) )
 
        {
        {
        _vec_start = .;
        _vec_start = .;
        *(.vectors)
        *(.vectors)
        _vec_end = .;
        _vec_end = .;
        } > ram
        } > vectors
 
 
        .text ALIGN(0x04):
        .text :
        {
        {
        *(.text)
        *(.text)
        } > ram
        } > ram
 
 
      .rodata :
      .rodata :

powered by: WebSVN 2.1.0

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