Reads an 8-bit PCI configuration register. Reads and returns the 8-bit PCI configuration register specified by Address. This function must guarantee that all PCI read and write operations are serialized. If Address > 0x0FFFFFFF, then ASSERT(). @param Address The address that encodes the PCI Bus, Device, Function and Register. @return The read value fro
| 59 | |
| 60 | **/ |
| 61 | UINT8 |
| 62 | EFIAPI |
| 63 | PciRead8 ( |
| 64 | IN UINTN Address |
| 65 | ) |
| 66 | { |
| 67 | return PciCf8Read8 (Address); |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | Writes an 8-bit PCI configuration register. |
no test coverage detected