Newer
Older
ubixos / Dump / hybos / lib / x86 / outportw.c
@cwolsen cwolsen on 31 Oct 2018 143 bytes Big Dump
void outportw(int port, unsigned short data)
{
	__asm__ __volatile__
	(
		"outw %%ax, %%dx\n\t" 
		:
		: "a" (data), "d" (port)
	);
}