source: rtems/c/src/lib/libbsp/mips/jmr3904/include/bsp.h @ 34c4852

4.104.114.84.95
Last change on this file since 34c4852 was 34c4852, checked in by Ralf Corsepius <ralf.corsepius@…>, on 05/26/05 at 05:36:48

2005-05-26 Ralf Corsepius <ralf.corsepius@…>

  • include/bsp.h: New header guard.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*  bsp.h
2 *
3 *  This include file contains some definitions specific to the
4 *  JMR3904 simulator in gdb.
5 *
6 *  COPYRIGHT (c) 1989-2000.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16#ifndef _BSP_H
17#define _BSP_H
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23#include <bspopts.h>
24
25#include <rtems.h>
26#include <rtems/iosupp.h>
27#include <rtems/console.h>
28#include <rtems/clockdrv.h>
29#include <libcpu/tx3904.h>
30
31/* Constants */
32
33/* miscellaneous stuff assumed to exist */
34
35extern rtems_configuration_table BSP_Configuration;
36
37/*
38 *  Device Driver Table Entries
39 */
40
41/*
42 * NOTE: Use the standard Console driver entry
43 */
44
45/*
46 * NOTE: Use the standard Clock driver entry
47 */
48
49/* functions */
50
51void bsp_cleanup( void );
52
53rtems_isr_entry set_vector(
54  rtems_isr_entry, rtems_vector_number, int );
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif
61/* end of include file */
Note: See TracBrowser for help on using the repository browser.