source: rtems/c/src/lib/libbsp/m68k/mvme147s/startup/linkcmds @ afe99c2

4.104.114.84.95
Last change on this file since afe99c2 was afe99c2, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/96 at 14:17:54

new file submitted by Dominique le Campion.

  • Property mode set to 100644
File size: 1.2 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, 1990, 1991, 1992, 1993, 1994.
6 *  On-Line Applications Research Corporation (OAR).
7 *  All rights assigned to U.S. Government, 1994.
8 *
9 *  This material may be reproduced by or for the U.S. Government pursuant
10 *  to the copyright license under the clause at DFARS 252.227-7013.  This
11 *  notice must appear in all copies of this file and its derivatives.
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.