source: rtems/c/src/lib/libbsp/sparc/leon2/include/bsp/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: 666 bytes
Line 
1/**
2 * @file
3 * @ingroup sparc_leon2
4 * @brief Interrupts definitions
5 */
6
7/* LEON2 generic shared IRQ setup
8 *
9 * Based on libbsp/shared/include/irq.h.
10 *
11 * The license and distribution terms for this file may be
12 * found in the file LICENSE in this distribution or at
13 * http://www.rtems.org/license/LICENSE.
14 */
15
16#ifndef LIBBSP_LEON2_IRQ_CONFIG_H
17#define LIBBSP_LEON2_IRQ_CONFIG_H
18
19#define BSP_INTERRUPT_VECTOR_MAX_STD 15 /* Standard IRQ controller */
20#define BSP_INTERRUPT_VECTOR_MIN 0
21#define BSP_INTERRUPT_VECTOR_MAX BSP_INTERRUPT_VECTOR_MAX_STD
22
23/* No extra check is needed */
24#undef BSP_INTERRUPT_CUSTOM_VALID_VECTOR
25
26#endif /* LIBBSP_LEON2_IRQ_CONFIG_H */
Note: See TracBrowser for help on using the repository browser.