10 lines
168 B
C
10 lines
168 B
C
#ifndef SERIAL_H
|
|
#define SERIAL_H
|
|
|
|
void outb(int port, unsigned char data);
|
|
unsigned char inb(int port);
|
|
|
|
int serial_init();
|
|
void serial_kputs(const char* str);
|
|
|
|
#endif |