source: rtems/c/src/lib/libbsp/m68k/mvme147s/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.1 KB
Line 
1/*
2 *  This file contains directives for the GNU linker which are specific
3 *  to the Motorola MVME147 boards.
4 *
5 *  COPYRIGHT (c) 1989-1997.
6 *  On-Line Applications Research Corporation (OAR).
7 *  Copyright assigned to U.S. Government, 1994.
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  MVME147 port for TNI - Telecom Bretagne
14 *  by Dominique LE CAMPION (Dominique.LECAMPION@enst-bretagne.fr)
15 *  May 1996
16 *
17 *  $Id$
18 */
19
20MEMORY
21        {
22        ram : org = 0x7000, l = 0x3d8fff
23        }
24
25SECTIONS
26{
27        .text 0x7000 :
28        {
29            text_start = . ;
30            _text_start = . ;
31            *(.text)
32            etext = ALIGN( 0x10 ) ;
33            _etext = .;
34        }
35        .data ADDR( .text ) + SIZEOF( .text ):
36        {
37            data_start = . ;
38            _data_start = .;
39            *(.data)
40            edata = ALIGN( 0x10 ) ;
41            _edata = .;
42        }
43        .bss ADDR( .data ) + SIZEOF( .data ):
44        {
45            bss_start = . ;
46            _bss_start = . ;
47            *(.bss)
48            *(COMMON)
49            end = . ;
50            _end = . ;
51        }
52}
Note: See TracBrowser for help on using the repository browser.