6a73e85ad1
. only good for obsolete K&R support . also remove a stray ansi.h and the proto cmd
12 lines
257 B
C
12 lines
257 B
C
#ifndef PCI_HELPER
|
|
#define PCI_HELPER
|
|
|
|
unsigned pci_inb(u16_t port);
|
|
unsigned pci_inw(u16_t port);
|
|
unsigned pci_inl(u16_t port);
|
|
|
|
void pci_outb(u16_t port, u8_t value);
|
|
void pci_outw(u16_t port, u16_t value);
|
|
void pci_outl(u16_t port, u32_t value);
|
|
|
|
#endif
|