RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
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
20extern void mips_install_isr_entries( void );
21extern void mips_vector_isr_handlers( CPU_Interrupt_frame *frame );
22
23#if __mips == 1
24extern void exc_utlb_code(void);
25extern void exc_dbg_code(void);
26extern void exc_norm_code(void);
27#elif __mips == 32
28extern void exc_tlb_code(void);
29extern void exc_xtlb_code(void);
30extern void exc_cache_code(void);
31extern void exc_norm_code(void);
32#elif __mips == 3
33extern void exc_tlb_code(void);
34extern void exc_xtlb_code(void);
35extern void exc_cache_code(void);
36extern void exc_norm_code(void);
37#endif
38
39#endif
Interrupt stack frame (ISF).
Definition: cpu.h:191