source: rtems/c/src/lib/libbsp/m68k/gen68302/startup/linkcmds @ 34d877e

4.104.114.84.95
Last change on this file since 34d877e was 9526d217, checked in by Joel Sherrill <joel.sherrill@…>, on 06/07/95 at 01:49:23

added for first time

  • Property mode set to 100644
File size: 906 bytes
Line 
1/*
2 *  This file contains directives for the GNU linker which are specific
3 *  to the Generic MC68302 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 = 0x0000, l = 16M
19        }
20
21m302 = 0xf7f000;
22
23SECTIONS
24{
25        .text 0xc00000 :
26        {
27        text_start = . ;
28        *(.text)
29        etext = ALIGN( 0x10 ) ;
30        }
31        .data 0x010000 :
32        {
33        data_start = . ;
34        *(.data)
35        edata = ALIGN( 0x10 ) ;
36        }
37        .bss ADDR( .data ) + SIZEOF( .data ):
38        {
39        bss_start = . ;
40        *(.bss)
41        *(COMMON)
42        end = . ;
43        _end = . ;
44        } 
45}
Note: See TracBrowser for help on using the repository browser.