Go to the documentation of this file.
6 int fb_hIn(
unsigned short port )
9 __asm__
volatile (
"inb %1, %0" :
"=a" (value) :
"d" (port));
13 int fb_hOut(
unsigned short port,
unsigned char value )
15 __asm__
volatile (
"outb %0, %1" : :
"a" (value),
"d" (port));