base/
prelude.rs

1//! The prelude exports a number of structs which are useful in
2//! representing things to do with the TX-2.  Providing this prelude
3//! is the main purpose of the base crate.
4pub use super::instruction::*;
5pub use super::onescomplement::error::*;
6pub use super::onescomplement::signed::*;
7pub use super::onescomplement::unsigned::*;
8pub use super::quarters::Quarter;
9pub use super::splay::{cycle_and_splay, unsplay};
10pub use super::subword::{join_halves, join_quarters, left_half, right_half, split_halves};
11pub use super::types::IndexBy;
12pub use super::types::*;
13pub use super::{u5, u6, u9, u18, u36};