672f8deb0ff88b4cd2c49f3de1d7bd08c4468756
[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 (void);
7 void serial_outb (uint8_t);
8
9 #endif /* devices/serial.h */