source: rtems/c/src/lib/libbsp/i386/force386/startup/linkcmds @ b91726f

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