mixlib/lib.rs
1//! # mixlib
2//!
3//! This crate provides utilities for working with Donald Knuth's MIX
4//! computer architecture and MIXAL (the MIX assembly language).
5
6pub mod char;
7pub mod fmt;
8pub mod num;
9
10#[cfg(not(any(target_pointer_width = "32", target_pointer_width = "64")))]
11compile_error!("'target_pointer_width' must be '32' or '64'");