jankos/ports.h
shockrah 897c23faca # Serial port configurations
* Implementing some serial port control in preparation to do debugging with bochs

* Changed naming of io to fb_ports to finally[tm] ports
2019-10-05 20:45:22 -07:00

10 lines
167 B
C

#include "types.h"
#ifndef INCLUDE_IO_H
#define INCLUDE_IO_H
void serial_control(const u16, const u16);
u8 serial_read_buffer(const u16);
#endif /* INCLUDE_IO_H */