2022-05-17 14:44:08 +00:00
|
|
|
#ifndef SHADE_PORTS_H
|
|
|
|
#define SHADE_PORTS_H
|
2022-05-14 16:42:37 +00:00
|
|
|
|
|
|
|
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
|