6 lines
125 B
C
6 lines
125 B
C
#ifndef IO_H
|
|
#define IO_H
|
|
void outb(unsigned short port, unsigned char data);
|
|
unsigned char inb(unsigned short port);
|
|
#endif
|