Changeset 1587af6 in rtems for c/src/lib/libbsp/m68k/gen68360/startup
- Timestamp:
- Dec 20, 1997, 4:37:29 PM (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8fe6d358
- Parents:
- f7fa7d7
- Location:
- c/src/lib/libbsp/m68k/gen68360/startup
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/m68k/gen68360/startup/linkcmds
rf7fa7d7 r1587af6 74 74 etext = .; 75 75 _etext = .; 76 77 /* 78 * C++ constructors 79 */ 80 __CTOR_LIST__ = .; 81 LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2) 82 *(.ctors) 83 LONG(0) 84 __CTOR_END__ = .; 85 __DTOR_LIST__ = .; 86 LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2) 87 *(.dtors) 88 LONG(0) 89 __DTOR_END__ = .; 76 90 } >ram 77 91 .data : { -
c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.bootp
rf7fa7d7 r1587af6 79 79 etext = .; 80 80 _etext = .; 81 82 /* 83 * C++ constructors 84 */ 85 __CTOR_LIST__ = .; 86 LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2) 87 *(.ctors) 88 LONG(0) 89 __CTOR_END__ = .; 90 __DTOR_LIST__ = .; 91 LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2) 92 *(.dtors) 93 LONG(0) 94 __DTOR_END__ = .; 81 95 } >rom 82 96 .data : AT(SIZEOF(.text)) { -
c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.prom
rf7fa7d7 r1587af6 107 107 etext = .; 108 108 _etext = .; 109 110 /* 111 * C++ constructors 112 */ 113 __CTOR_LIST__ = .; 114 LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2) 115 *(.ctors) 116 LONG(0) 117 __CTOR_END__ = .; 118 __DTOR_LIST__ = .; 119 LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2) 120 *(.dtors) 121 LONG(0) 122 __DTOR_END__ = .; 109 123 } >rom 110 124 .data : {
Note: See TracChangeset
for help on using the changeset viewer.