10 lines
153 B
C
10 lines
153 B
C
#ifndef SERIAL_H_
|
|
#define SERIAL_H_
|
|
|
|
#include <types.h>
|
|
|
|
void serial_outb(uint16 port, uint8 value);
|
|
uint8 serial_inb(uint16 port);
|
|
|
|
#endif // SERIAL_H_
|