source: rtems/c/src/lib/libbsp/i960/cvme961/startup/linkcmds @ f7fa7d7

4.104.114.84.95
Last change on this file since f7fa7d7 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: 1.1 KB
Line 
1/*
2 *  This file contains directives for the GNU linker which are specific
3 *  to the Cyclone CVME960/CVME961 boards.
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 0x10000 :
24        {
25            text_start = . ;
26            _text_start = . ;
27            *(.text)
28            etext = ALIGN( 0x10 ) ;
29/*            _etext = .; -- conflicts */
30        }
31        .data ADDR( .text ) + SIZEOF( .text ):
32        {
33            data_start = . ;
34            _data_start = .;
35            *(.data)
36            edata = ALIGN( 0x10 ) ;
37/*            _edata = .; -- conflicts */
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.