muheheheee
static u16 find_pci_device(u16 vendor, u16 device)
{
_AX = 0xb102;
_CX = device;
_DX = vendor;
_SI = 0; /* let's hope nobody has more than one of these cards ... */
__int__(0x1a);
if (_AH == 0)
return _BX;
else
return (u16)-1;
}