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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [libgloss/] [pa/] [w89k.ld] - Diff between revs 207 and 345

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

Rev 207 Rev 345
OUTPUT_ARCH(hppa)
OUTPUT_ARCH(hppa)
ENTRY("$START$")
ENTRY("$START$")
STARTUP(crt0.o)
STARTUP(crt0.o)
GROUP(-lc -lw89k -lgcc)
GROUP(-lc -lw89k -lgcc)
SEARCH_DIR(.)
SEARCH_DIR(.)
MEMORY
MEMORY
{
{
  ram (rwx) : ORIGIN = 0x100000, LENGTH = 0x100000
  ram (rwx) : ORIGIN = 0x100000, LENGTH = 0x100000
}
}
SECTIONS
SECTIONS
{
{
  .text :
  .text :
  {
  {
    CREATE_OBJECT_SYMBOLS
    CREATE_OBJECT_SYMBOLS
    *(.PARISC.stubs)
    *(.PARISC.stubs)
    *(.text)
    *(.text)
     etext  =  . ;
     etext  =  . ;
     _etext  =  . ;
     _etext  =  . ;
     __CTOR_LIST__ = . ;
     __CTOR_LIST__ = . ;
     LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)
     LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)
    *(.ctors)
    *(.ctors)
     LONG(0)
     LONG(0)
     __CTOR_END__ = . ;
     __CTOR_END__ = . ;
     __DTOR_LIST__ = . ;
     __DTOR_LIST__ = . ;
     LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2)
     LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2)
    *(.dtors)
    *(.dtors)
     LONG(0)
     LONG(0)
     __DTOR_END__ = . ;
     __DTOR_END__ = . ;
    *(.lit)
    *(.lit)
    *(.shdata)
    *(.shdata)
    $global$ = ALIGN(4) ;
    $global$ = ALIGN(4) ;
    . += 4;
    . += 4;
  } > ram
  } > ram
  .data : {
  .data : {
    *(.data)
    *(.data)
    CONSTRUCTORS
    CONSTRUCTORS
    edata  =  . ;
    edata  =  . ;
    _edata  =  . ;
    _edata  =  . ;
  } > ram
  } > ram
  .bss : {
  .bss : {
    _bss_start = ALIGN(4) ;
    _bss_start = ALIGN(4) ;
    *(.bss)
    *(.bss)
    *(COMMON)
    *(COMMON)
    _stack = ALIGN(64) ;        /* Stack grows up on the PA!!! */
    _stack = ALIGN(64) ;        /* Stack grows up on the PA!!! */
    . += 0x2000 ;
    . += 0x2000 ;
    end = . ;
    end = . ;
    _end = . ;
    _end = . ;
  } > ram
  } > ram
}
}
 
 

powered by: WebSVN 2.1.0

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