#ifndef DRIVERS__SERIAL_H__
#define DRIVERS__SERIAL_H__
#if defined (BIOS)
#include <stdint.h>
extern uint32_t serial_baudrate;
void serial_out(uint8_t b);
int serial_in(void);
#endif