wm: teppich

ref: f34b2877d85d37c328948262255c96bfe69cba10
dir: /pc/x86.c/

View raw version
#include <u.h>

void
outb(uint16 port, uint8 data)
{ 
	asm volatile("out %0, %1" : : "a" (data), "d" (port));
}

uint8
inb(uint16 port)
{
	uint8 data;
	asm volatile("in %1, %0" : "=a" (data) : "d" (port)); 
	return data;
}