blob: bb27a62f02a943b90b798bce528b01efc80b6fb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _GPXE_SERIAL_H
#define _GPXE_SERIAL_H
/** @file
*
* Serial driver functions
*
*/
extern void serial_putc(int ch);
extern int serial_getc(void);
extern void serial_init(void);
#endif /* _GPXE_SERIAL_H */
|