15 lines
218 B
C
15 lines
218 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 void serial_init(void);
|
|
|
|
#endif /* _GPXE_SERIAL_H */
|