Changeset 52cd72b1 in rtems
- Timestamp:
- 12/07/95 15:42:53 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8442656a
- Parents:
- 62c4e481
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/i960/cvme961/startup/linkcmds
r62c4e481 r52cd72b1 27 27 *(.text) 28 28 etext = ALIGN( 0x10 ) ; 29 /* _etext = .; */29 /* _etext = .; -- conflicts */ 30 30 } 31 31 .data ADDR( .text ) + SIZEOF( .text ): … … 35 35 *(.data) 36 36 edata = ALIGN( 0x10 ) ; 37 /* _edata = .; */37 /* _edata = .; -- conflicts */ 38 38 } 39 39 .bss ADDR( .data ) + SIZEOF( .data ): 40 40 { 41 41 bss_start = . ; 42 /* _bss_start = . ; */ 42 _bss_start = . ; 43 43 *(.bss) 44 44 *(COMMON)
Note: See TracChangeset
for help on using the changeset viewer.