8 lines
143 B
C
8 lines
143 B
C
#ifndef INCLUDE_IO_H
|
|
#define INCLUDE_IO_H
|
|
|
|
void outb(unsigned short port, unsigned char data);
|
|
unsigned char inb(unsigned short port);
|
|
|
|
#endif
|