source: rtems/c/src/lib/libbsp/m68k/dmv152/startup/linkcmds @ 88d594a

4.104.114.84.95
Last change on this file since 88d594a 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.1 KB
Line 
1/*
2 *  This file contains directives for the GNU linker which are specific
3 *  to the DY-4 DMV152/SVME153 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 *  $Id$
14 */
15
16MEMORY
17        {
18        ram : org = 0x12800, l = 1M
19        }
20
21SECTIONS
22{
23        .text 0x12800 :
24        {
25        text_start = . ;
26        _text_start = . ;
27        *(.text)
28        etext = ALIGN( 0x10 ) ;
29        _etext = .;
30        }
31        .data ADDR( .text ) + SIZEOF( .text ):
32        {
33        data_start = . ;
34        _data_start = . ;
35        *(.data)
36        edata = ALIGN( 0x10 ) ;
37        _edata = .;
38        }
39        .bss ADDR( .data ) + SIZEOF( .data ):
40        {
41        bss_start = . ;
42        _bss_start = . ;
43        *(.bss)
44        *(COMMON)
45        end = . ;
46        _end = . ;
47        }
48}
Note: See TracBrowser for help on using the repository browser.