syscall/io/
mod.rs

1//! I/O functions
2
3pub use self::{io::*, mmio::*};
4
5#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
6pub use self::pio::*;
7
8mod io;
9mod mmio;
10
11#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
12mod pio;