mirror of
https://github.com/xcat2/xNBA.git
synced 2026-03-27 00:33:30 +00:00
15 lines
228 B
C
15 lines
228 B
C
#ifndef _GPXE_SERIAL_H
|
|
#define _GPXE_SERIAL_H
|
|
|
|
/** @file
|
|
*
|
|
* Serial driver functions
|
|
*
|
|
*/
|
|
|
|
extern void serial_putc ( int ch );
|
|
extern int serial_getc ( void );
|
|
extern int serial_ischar ( void );
|
|
|
|
#endif /* _GPXE_SERIAL_H */
|