Changeset 2aa61582 in rtems
- Timestamp:
- 05/09/02 21:42:24 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 911158a
- Parents:
- a2a8c5b
- Location:
- c/src/lib/libbsp/i960/rxgen960
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/i960/rxgen960/ChangeLog
ra2a8c5b r2aa61582 1 2001-05-09 Joel Sherrill <joel@OARcorp.com> 2 3 * startup/linkcmds: In support of gcc 3.1, added one of more 4 of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*, 5 .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*. Spacing corrections 6 and direction of segments to memory regions may also have been 7 addressed. This was a sweep across all BSPs. 8 * startup/linkcmds.real: Ditto. 9 * clock/ckinit.c: Add volatile to Clock_driver_ticks. 10 1 11 2002-04-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 12 -
c/src/lib/libbsp/i960/rxgen960/clock/ckinit.c
ra2a8c5b r2aa61582 30 30 31 31 i960_isr_entry Old_ticker; 32 rtems_unsigned32 Clock_driver_ticks;32 volatile rtems_unsigned32 Clock_driver_ticks; 33 33 /* ticks since initialization */ 34 34 unsigned int clock_isr_global[16]; /* place to store global regs */ -
c/src/lib/libbsp/i960/rxgen960/startup/linkcmds
ra2a8c5b r2aa61582 23 23 CREATE_OBJECT_SYMBOLS 24 24 *(.text) 25 _rodata_start = . ; 26 *(.rodata*) 27 *(.gnu.linkonce.r*) 28 _erodata = ALIGN( 0x10 ) ; 25 29 _etext = .; 26 30 -
c/src/lib/libbsp/i960/rxgen960/startup/linkcmds.real
ra2a8c5b r2aa61582 123 123 LONG(0) 124 124 __DTOR_END__ = .; 125 etext = ALIGN( 0x10 ) ; 125 _rodata_start = . ; 126 *(.rodata*) 127 *(.gnu.linkonce.r*) 128 _erodata = ALIGN( 0x10 ) ; 129 etext = ALIGN( 0x10 ) ; 126 130 /* END NEW TEST TEST TEST */ 127 131 /* 16 byte aligned PRCB.
Note: See TracChangeset
for help on using the changeset viewer.