source: rtems/c/src/lib/libbsp/mips/hurricane/include/irq.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 784 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup bsp_interrupt
5 *
6 * @brief interrupt definitions.
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2012.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#ifndef LIBBSP_MIPS_XXX_IRQ_H
19#define LIBBSP_MIPS_XXX_IRQ_H
20
21#ifndef ASM
22  #include <rtems.h>
23  #include <rtems/irq.h>
24  #include <rtems/irq-extension.h>
25  #include <rtems/score/mips.h>
26#endif
27
28/**
29 * @addtogroup bsp_interrupt
30 *
31 * @{
32 */
33
34#define BSP_INTERRUPT_VECTOR_MIN    0
35#define RM5231_MAXIMUM_VECTORS      (MIPS_INTERRUPT_BASE+8)
36#define BSP_INTERRUPT_VECTOR_MAX    RM5231_MAXIMUM_VECTORS
37
38/** @} */
39
40#endif /* LIBBSP_MIPS_JMR3904_IRQ_H */
Note: See TracBrowser for help on using the repository browser.