#ifndef _IOPORTS_H_ #define _IOPORTS_H_ /* Input an 8 bit byte from 16 bit port */ short inb(short port); /* Output 8 bit byte to 16 bit port */ void outb(short port, short value); #endif