13 lines
166 B
C
13 lines
166 B
C
#ifndef __DRIVERS__SERIAL_H__
|
|
#define __DRIVERS__SERIAL_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
void serial_out(uint8_t b);
|
|
|
|
#if defined (BIOS)
|
|
int serial_in(void);
|
|
#endif
|
|
|
|
#endif
|