⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pci_emulation.h

📁 xen虚拟机源代码安装包
💻 H
字号:
/* * Changes to PCI emulation made by Marathon Technologies, June 2008 */typedef struct PCI_EMULATION_INFO_t {    struct PCI_EMULATION_INFO_t *next;    char name[32];    unsigned int vendorid;    unsigned int deviceid;    unsigned int command;    unsigned int status;    unsigned int revision;    unsigned int classcode;    unsigned int headertype;    unsigned int subvendorid;    unsigned int subsystemid;    unsigned int interruputline;    unsigned int interruputpin;}   PCI_EMULATION_INFO;    void parse_pci_emulation_info(char *config_text, PCI_EMULATION_INFO *pci_emulation_info);void pci_emulation_init(PCIBus *bus, PCI_EMULATION_INFO *pci_emulation_info);extern PCI_EMULATION_INFO *PciEmulationInfoHead;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -