source: rtems/c/src/lib/libbsp/m68k/sim68000/include/bsp.h @ 4784214a

4.115
Last change on this file since 4784214a was 4784214a, checked in by Joel Sherrill <joel.sherrill@…>, on 07/16/15 at 15:43:51

remaining bsp.h: Fix by hand to LIBBSP_@CPU@_@BSP_FAMILY@_BSP_H

These files were left after running the script in the previous patch.

  • 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 *  BSVC simulator BSP.
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.org/license/LICENSE.
12 */
13
14#ifndef LIBBSP_M68K_SIM68000_BSP_H
15#define LIBBSP_M68K_SIM68000_BSP_H
16
17#include <bspopts.h>
18#include <bsp/default-initial-extension.h>
19
20#include <rtems.h>
21#include <rtems/iosupp.h>
22#include <rtems/console.h>
23#include <rtems/clockdrv.h>
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29/*
30 *  Define some hardware constants here
31 */
32
33/* functions */
34
35rtems_isr_entry set_vector( rtems_isr_entry, rtems_vector_number, int );
36
37/*
38 * Prototype for methods in the BSP that cross file boundaries.
39 */
40void bsp_spurious_initialize(void);
41void bsp_spurious_handler_assistant(rtems_vector_number vector);
42rtems_isr bsp_spurious_handler(rtems_vector_number vector);
43
44#ifdef __cplusplus
45}
46#endif
47
48#endif
Note: See TracBrowser for help on using the repository browser.