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

4.104.114.84.95
Last change on this file since ac7d5ef0 was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • 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 MVME162 board.
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 *  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.