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

Diff for /funnyos/arch/sam7s64/ldscript between version 1.4 and 1.5

version 1.4, 2007/11/12 13:34:32 version 1.5, 2007/11/12 22:02:18
Line 15 
Line 15 
                 _etext = .;                  _etext = .;
         } /* .text */          } /* .text */
   
         /* initialized data (.data) */          /* initialized data (.data), place this at 60KB (upper 4KB of flash) */
         .data : AT (ADDR(.text) + SIZEOF(.text)) {          .data : AT (0x0000f000) {
                 _sdata = .;                  _sdata = .;
                 *(.data)                  *(.data)
                 _edata = .;                  _edata = .;
         } /* .data */          } /* .data */
   
         /* uninitialized data (.bss) */          /* uninitialized data (.bss), completes .data */
         .bss (NOLOAD) : {          .bss (NOLOAD) : {
                 . = ALIGN(4);                  . = ALIGN(4);
                 _sbss = .;                  _sbss = .;

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

CVSweb