os/stuff/drivers/i386/pci.h

14 lines
285 B
C
Raw Normal View History

2019-05-25 10:05:36 -05:00
#ifndef PCI_INTERN_H
#define PCI_INTERN_H
#include <stdint.h>
#include "../pci.h"
#define PCI_CONFIG_ADDRESS 0xCF8
#define PCI_CONFIG_DATA 0xCFC
pci_dev_common_info* pci_get_dev_info(uint8_t bus,uint8_t device,uint8_t func);
void pci_set_dev_info(pci_dev_common_info* inf);
#endif