diff options
author | Joel Sherrill <joel.sherrill@OARcorp.com> | 2000-12-13 22:12:06 +0000 |
---|---|---|
committer | Joel Sherrill <joel.sherrill@OARcorp.com> | 2000-12-13 22:12:06 +0000 |
commit | 797d88ba3179d84cb6f3fc35fd3e86092c12fef8 (patch) | |
tree | f9d35cbc741ac43f15e9ee1d70b8e85a8603eddf /cpukit/score/cpu/mips/cpu.c | |
parent | 2000-12-13 Joel Sherrill <joel@OARcorp.com> (diff) | |
download | rtems-797d88ba3179d84cb6f3fc35fd3e86092c12fef8.tar.bz2 |
2000-12-13 Joel Sherrill <joel@OARcorp.com>
* cpu.c: Removed duplicate declaration for _ISR_Vector_table.
* cpu_asm.S: Removed assembly language to vector ISR handler
on MIPS ISA I. Now call mips_vector_isr_handlers() in libcpu or BSP.
* rtems/score/cpu.h (CPU_INTERRUPT_NUMBER_OF_VECTORS): No
longer a constant -- get the real value from libcpu.
Diffstat (limited to '')
-rw-r--r-- | cpukit/score/cpu/mips/cpu.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cpukit/score/cpu/mips/cpu.c b/cpukit/score/cpu/mips/cpu.c index 22d66c95c0..ae5bf9f9ae 100644 --- a/cpukit/score/cpu/mips/cpu.c +++ b/cpukit/score/cpu/mips/cpu.c @@ -42,8 +42,6 @@ #include <rtems/score/wkspace.h> -ISR_Handler_entry _ISR_Vector_table[ ISR_NUMBER_OF_VECTORS ]; - /* _CPU_Initialize * * This routine performs processor dependent initialization. |