[BACK]Return to ldscript CVS log [TXT][DIR] Up to [local] / funnyos / arch / sam7s64

Annotation of funnyos/arch/sam7s64/ldscript, Revision 1.5

1.1       init        1: /*
1.5     ! nbrk        2:  * $Id: ldscript,v 1.4 2007/11/12 13:34:32 nbrk Exp $
1.1       init        3:  */
                      4: /*
                      5:  * Where to put each section.
                      6:  */
                      7: SECTIONS
                      8: {
                      9:        .text : {
                     10:                _stext = .;
                     11:                *(.text)
                     12:                *(.rodata)
                     13:                *(.rodata*)
                     14:                . = ALIGN(4);
                     15:                _etext = .;
                     16:        } /* .text */
                     17:
1.5     ! nbrk       18:        /* initialized data (.data), place this at 60KB (upper 4KB of flash) */
        !            19:        .data : AT (0x0000f000) {
1.1       init       20:                _sdata = .;
                     21:                *(.data)
                     22:                _edata = .;
                     23:        } /* .data */
                     24:
1.5     ! nbrk       25:        /* uninitialized data (.bss), completes .data */
1.1       init       26:        .bss (NOLOAD) : {
                     27:                . = ALIGN(4);
                     28:                _sbss = .;
                     29:                *(.bss)
                     30:                _ebss = .;
                     31:        } /* .bss */
                     32:
                     33: } /* SECTIONS */
                     34:
                     35: end = .;
                     36:
                     37:

CVSweb