Newer
Older
ubixos / Dump / hybos / lib / x86 / outportw.c
@Christopher W. Olsen Christopher W. Olsen on 5 Nov 2018 134 bytes Sync
void outportw(int port, unsigned short data)
{
	__asm__ __volatile__
	(
		"outw %%ax, %%dx\n\t" 
		:
		: "a" (data), "d" (port)
	);
}