11 lines
183 B
C
11 lines
183 B
C
#ifndef SERIAL_H
|
|
#define SERIAL_H
|
|
|
|
void outb(int port, unsigned char data);
|
|
unsigned char inb(int port);
|
|
|
|
int serial_init();
|
|
void skputs(const char* str);
|
|
void skputc(char c);
|
|
|
|
#endif |