mango-hal 0.2.1

Hardware Abstraction Layer for the mango operationg system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
mod port;

#[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
mod mmio;

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub use port::Serial;

#[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
pub use mmio::Serial;