RTEMS  5.1
isr_entries.h
Go to the documentation of this file.
1 
6 /*
7  * COPYRIGHT (c) 1989-2012.
8  * On-Line Applications Research Corporation (OAR).
9  *
10  * The license and distribution terms for this file may be
11  * found in the file LICENSE in this distribution or at
12  * http://www.rtems.org/license/LICENSE.
13  */
14 
15 #ifndef _ISR_ENTRIES_H
16 #define _ISR_ENTRIES_H 1
17 
18 #include <rtems/score/cpuimpl.h>
19 
20 extern void mips_install_isr_entries( void );
21 extern void mips_vector_isr_handlers( CPU_Interrupt_frame *frame );
22 
23 #if __mips == 1
24 extern void exc_utlb_code(void);
25 extern void exc_dbg_code(void);
26 extern void exc_norm_code(void);
27 #elif __mips == 32
28 extern void exc_tlb_code(void);
29 extern void exc_xtlb_code(void);
30 extern void exc_cache_code(void);
31 extern void exc_norm_code(void);
32 #elif __mips == 3
33 extern void exc_tlb_code(void);
34 extern void exc_xtlb_code(void);
35 extern void exc_cache_code(void);
36 extern void exc_norm_code(void);
37 #endif
38 
39 #endif
Interrupt stack frame (ISF).
Definition: cpu.h:191