axle OS
x86_32 UNIX-like hobby OS
pci_detect.h
1 #ifndef PCI_DETECT_H
2 #define PCI_DETECT_H
3 
4 #include <std/std.h>
5 
6 typedef struct pci_device {
7  uint16_t vendor;
8  uint16_t device;
9  uint16_t func;
10 } pci_device;
11 
12 void pci_install(void);
13 void pci_list(void);
14 
15 #endif
Definition: pci_detect.h:6