2022-05-14 16:42:37 +00:00
|
|
|
#ifndef PORTS_H
|
|
|
|
#define PORTS_H
|
|
|
|
|
|
|
|
unsigned char inb(unsigned short port);
|
|
|
|
void outb(unsigned short port, unsigned char data);
|
|
|
|
unsigned short inw(unsigned short port);
|
|
|
|
void outw(unsigned short port, unsigned short data);
|
|
|
|
|
|
|
|
void io_wait();
|
|
|
|
|
|
|
|
#endif
|