2022-03-01 19:53:46 +03:00
|
|
|
#ifndef __DRIVERS__SERIAL_H__
|
|
|
|
#define __DRIVERS__SERIAL_H__
|
|
|
|
|
2022-10-06 06:29:13 +03:00
|
|
|
#if defined (BIOS)
|
|
|
|
|
2022-03-01 19:53:46 +03:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
void serial_out(uint8_t b);
|
|
|
|
int serial_in(void);
|
2022-10-06 06:29:13 +03:00
|
|
|
|
2022-03-01 19:53:46 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|