source: rtems/c/src/lib/libbsp/c4x/c4xsim/include/bsp.h @ 4909a30

4.104.115
Last change on this file since 4909a30 was 4909a30, checked in by Joel Sherrill <joel.sherrill@…>, on 09/10/08 at 21:35:37

2008-09-10 Joel Sherrill <joel.sherrill@…>

  • include/bsp.h: Review of all bsp_cleanup() implementations. In this phase, all prototypes were removed from bsp.h and empty implementations were removed and made to use the shared stub.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*  bsp.h
2 *
3 *  This include file contains all C4X Simulator IO definitions.
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#ifndef _BSP_H
16#define _BSP_H
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22#include <bspopts.h>
23
24#ifdef ASM
25
26#else
27#include <rtems.h>
28#include <rtems/console.h>
29#include <rtems/clockdrv.h>
30#include <rtems/console.h>
31#include <rtems/iosupp.h>
32
33/* Constants */
34
35/*
36 *  Device Driver Table Entries
37 */
38
39/*
40 * NOTE: Use the standard Console driver entry
41 */
42
43/*
44 * NOTE: Use the standard Clock driver entry
45 */
46
47/*
48 *  Information placed in the linkcmds file.
49 */
50
51/* functions */
52
53rtems_isr_entry set_vector(                    /* returns old vector */
54  rtems_isr_entry     handler,                  /* isr routine        */
55  rtems_vector_number vector,                   /* vector number      */
56  int                 type                      /* RTEMS or RAW intr  */
57);
58
59void BSP_fatal_return( void );
60
61void bsp_spurious_initialize( void );
62
63#endif /* ASM */
64
65#ifdef __cplusplus
66}
67#endif
68
69#endif
Note: See TracBrowser for help on using the repository browser.