#ifndef PORTIO_H #define PORTIO_H #define outb(port, value) asm volatile("out %b0,%w1" : : "a" (value), "d" (port)); #endif