source: rtems/c/src/lib/libbsp/mips/rbtx4938/include/bsp.h @ 7054fccf

5
Last change on this file since 7054fccf was 7054fccf, checked in by Joel Sherrill <joel@…>, on 03/30/16 at 19:04:23

mips/rbtx4938/include/bsp.h: Do not include <rtems/iosupp.h>

  • Property mode set to 100644
File size: 834 bytes
Line 
1/**
2 *  @file
3 * 
4 *  This include file contains some definitions specific to the RBTX4938.
5 */
6
7/*
8 *  COPYRIGHT (c) 1989-2012.
9 *  On-Line Applications Research Corporation (OAR).
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_MIPS_RBTX4938_BSP_H
17#define LIBBSP_MIPS_RBTX4938_BSP_H
18
19#ifndef ASM
20
21#include <bspopts.h>
22#include <bsp/default-initial-extension.h>
23
24#include <rtems.h>
25#include <libcpu/tx4938.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31#define BSP_FEATURE_IRQ_EXTENSION
32#define BSP_SHARED_HANDLER_SUPPORT      1
33
34/*
35 * Prototypes for methods called from .S for dependency tracking
36 */
37void init_tlb(void);
38void resettlb(int i);
39
40#ifdef __cplusplus
41}
42#endif
43
44#endif /* !ASM */
45
46#endif
Note: See TracBrowser for help on using the repository browser.