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

4.104.114.84.95
Last change on this file since 7150f00f 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: 938 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-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 *  $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.