rusty-hermit 0.3.54

A Rust-based library operting system
//! A module containing virtios transport mechanisms.
//!
//! The module contains only PCI specifc transport mechanism.
//! Other mechanisms (MMIO and Channel I/O) are currently not
//! supported.

#[cfg(not(feature = "pci"))]
pub mod mmio;
#[cfg(feature = "pci")]
pub mod pci;