First stab at interrupt-driven serial.
[pintos-anon] / src / devices / serial.h
1 #ifndef DEVICES_SERIAL_H
2 #define DEVICES_SERIAL_H
3
4 #include <stdint.h>
5
6 void serial_init (int phase);
7 void serial_putc (uint8_t);
8 uint8_t serial_getc (void);
9
10 #endif /* devices/serial.h */