source: rtems/c/src/lib/libbsp/i386/shared/io/bspIo.h @ dddc0557

4.104.114.84.95
Last change on this file since dddc0557 was bd8c8b2a, checked in by Joel Sherrill <joel.sherrill@…>, on 08/05/98 at 16:51:39

Patch from Eric Valette <valette@…> which brings the i386ex BSP
inline with the new IRQ structure.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/* bspIo.h
2 *
3 *  This include file contains declaration of interface that
4 *  will be provided by the file contained in this directory.
5 *
6 *
7 *  COPYRIGHT (c) 1998 valette@crf.canon.fr
8 *
9 *  The license and distribution terms for this file may be
10 *  found in found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15#ifndef _LIBBSP_I386_SHARED_IO_BSP_IO_H
16#define _LIBBSP_I386_SHARED_IO_BSP_IO_H
17
18/*
19 * All the functions declared as extern after this comment
20 * MUST be implemented in each BSP. Using this function,
21 * this directory contains shared code that export higher level
22 * functionnality described after the next command.
23 */
24typedef void    (*BSP_output_char_function_type)        (char c);
25typedef char    (*BSP_polling_getchar_function_type)    (char c);
26
27extern  BSP_output_char_function_type           BSP_output_char;
28extern  BSP_polling_getchar_function_type       BSP_poll_char;
29extern  void BSP_emergency_output_init();
30/*
31 * All the function declared as extern after this comment
32 * are available for each ix86 BSP by compiling and linking
33 * the files contained in this directory PROVIDED definition
34 * and initialisation of the previous variable are done.
35 */
36void printk(char *fmt, ...);
37
38#endif
Note: See TracBrowser for help on using the repository browser.