source: rtems/c/src/lib/libbsp/powerpc/mbx8xx/include/irq-config.h @ 856cce50

4.104.115
Last change on this file since 856cce50 was 856cce50, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 10/23/09 at 09:51:03

add new files for exception handler

  • Property mode set to 100644
File size: 812 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup bsp_interrupt
5 *
6 * @brief BSP interrupt support configuration.
7 */
8
9/*
10 * Copyright (c) 2009
11 * embedded brains GmbH
12 * Obere Lagerstr. 30
13 * D-82178 Puchheim
14 * Germany
15 * <rtems@embedded-brains.de>
16 *
17 * The license and distribution terms for this file may be
18 * found in the file LICENSE in this distribution or at
19 * http://www.rtems.com/license/LICENSE.
20 */
21
22#ifndef LIBBSP_POWERPC_MBX8XX_IRQ_CONFIG_H
23#define LIBBSP_POWERPC_MBX8XX_IRQ_CONFIG_H
24
25#include <stdint.h>
26
27#include <bsp/irq.h>
28
29/**
30 * @addtogroup bsp_interrupt
31 *
32 * @{
33 */
34
35/**
36 * @brief Minimum vector number.
37 */
38#define BSP_INTERRUPT_VECTOR_MIN BSP_LOWEST_OFFSET
39
40/**
41 * @brief Maximum vector number.
42 */
43#define BSP_INTERRUPT_VECTOR_MAX BSP_MAX_OFFSET
44
45/** @} */
46
47#endif /* LIBBSP_POWERPC_MBX8XX_IRQ_CONFIG_H */
Note: See TracBrowser for help on using the repository browser.