ull 0.2.0

Provides core primitives for the ull emulation project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]

extern crate alloc;
pub mod byte;
pub use byte::Byte;
pub mod nibble;
pub use nibble::Nibble;
pub mod word;
pub use word::Word;
pub mod address;
pub use address::Address;
pub mod bus;
pub use bus::{Bus, DmaRequest, DmaResult};