regmap/lib.rs
1//! `regmap` allows users to memory-map x86_64 registers.
2//!
3//! in many cases this will work, but for some uses (SIMD, or bulk memory instructions like
4//! `fxsave` and `rep movs`) will have unpredictable results; likely an application crash.
5//!
6//! the vehicle is shaped for GPR arithmetic, bitwise operation, and control flow. pleas keep your
7//! hands and feet inside the vehicle at all times and everything will be fine.
8
9mod regmap;
10
11// re-export regmap innards for use from std-participating crates. no_std builds as a staticlib
12// present the same items with a little extra scaffolding.
13pub use regmap::*;