Changeset c533372 in rtems
- Timestamp:
- 12/19/00 16:43:34 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3ad7c5d2
- Parents:
- 8f4bddd
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/m68k/ChangeLog
r8f4bddd rc533372 1 2000-12-19 Joel Sherrill <joel@OARcorp.com> 2 3 * cpu.c: Do not read or write raw interrupt vector table if 4 we are on a CPU that does not have a %vbr register and the 5 BSP is configured as having the table in ROM. 6 1 7 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/m68k/cpu.c
r8f4bddd rc533372 96 96 97 97 m68k_get_vbr( interrupt_table ); 98 #if ( M68K_HAS_VBR == 1 ) 98 99 *old_handler = interrupt_table[ vector ]; 99 #if ( M68K_HAS_VBR == 1 )100 100 interrupt_table[ vector ] = new_handler; 101 101 #else … … 108 108 */ 109 109 110 *old_handler = _CPU_ISR_jump_table[vector].isr_handler; 110 111 _CPU_ISR_jump_table[vector].isr_handler = (unsigned32) new_handler; 111 112 if ( (unsigned32) interrupt_table != 0xFFFFFFFF ) -
cpukit/score/cpu/m68k/ChangeLog
r8f4bddd rc533372 1 2000-12-19 Joel Sherrill <joel@OARcorp.com> 2 3 * cpu.c: Do not read or write raw interrupt vector table if 4 we are on a CPU that does not have a %vbr register and the 5 BSP is configured as having the table in ROM. 6 1 7 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/m68k/cpu.c
r8f4bddd rc533372 96 96 97 97 m68k_get_vbr( interrupt_table ); 98 #if ( M68K_HAS_VBR == 1 ) 98 99 *old_handler = interrupt_table[ vector ]; 99 #if ( M68K_HAS_VBR == 1 )100 100 interrupt_table[ vector ] = new_handler; 101 101 #else … … 108 108 */ 109 109 110 *old_handler = _CPU_ISR_jump_table[vector].isr_handler; 110 111 _CPU_ISR_jump_table[vector].isr_handler = (unsigned32) new_handler; 111 112 if ( (unsigned32) interrupt_table != 0xFFFFFFFF )
Note: See TracChangeset
for help on using the changeset viewer.