| 234 | } |
| 235 | |
| 236 | inline void SetCommand(uint16_t val){ |
| 237 | PCI::ConfigWriteWord(bus, slot, func, PCICommand, val); |
| 238 | } |
| 239 | |
| 240 | inline void EnableBusMastering(){ |
| 241 | PCI::ConfigWriteWord(bus, slot, func, PCICommand, PCI::ConfigReadWord(bus, slot, func, PCICommand) | PCI_CMD_BUS_MASTER); |
nothing calls this directly
no test coverage detected