15 lines
177 B
C
15 lines
177 B
C
#pragma once
|
|
|
|
#include <lcrash/types.h>
|
|
|
|
/**
|
|
* Initialize the PCI code.
|
|
*/
|
|
void PciInitialize();
|
|
|
|
/// PCI is usable
|
|
bool PciPresent();
|
|
|
|
/// PCIE is usable
|
|
bool PciePresent();
|