source: rtems/c/src/lib/libbsp/m68k/mvme162/startup/linkcmds @ 98e4ebf5

4.104.114.84.95
Last change on this file since 98e4ebf5 was 98e4ebf5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 15:45:54

Fixed typo in the pointer to the license terms.

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[ac7d5ef0]1/*
2 *  This file contains directives for the GNU linker which are specific
3 *  to the Motorola MVME162 board.
4 *
[03f2154e]5 *  COPYRIGHT (c) 1989-1997.
[ac7d5ef0]6 *  On-Line Applications Research Corporation (OAR).
[03f2154e]7 *  Copyright assigned to U.S. Government, 1994.
[ac7d5ef0]8 *
[98e4ebf5]9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
[03f2154e]11 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]12 *
13 *  Modifications of respective RTEMS file: COPYRIGHT (c) 1994.
14 *  EISCAT Scientific Association. M.Savitski
15 *
16 *  This material is a part of the MVME162 Board Support Package
17 *  for the RTEMS executive. Its licensing policies are those of the
18 *  RTEMS above.
19 *
20 *  $Id$
21 */
22
23MEMORY
24        {
25        ram : org = 0x100000, l = 1M
26        }
27
28SECTIONS
29{
30        .text 0x100000 :
31        {
32        text_start = . ;
33        *(.text)
34        etext = ALIGN( 0x10 ) ;
35        }
36        .data ADDR( .text ) + SIZEOF( .text ):
37        {
38        data_start = . ;
39        *(.data)
40        edata = ALIGN( 0x10 ) ;
41        }
42        .bss ADDR( .data ) + SIZEOF( .data ):
43        {
44        bss_start = . ;
45        *(.bss)
46        *(COMMON)
47        end = . ;
48        _end = . ;
49        }
50}
Note: See TracBrowser for help on using the repository browser.