mod decode;
mod instruction;
mod opcode;
pub use decode::{decode_all, DecodeError, Decoder};
pub use instruction::{InlineOperands, Instruction};
pub use opcode::Opcode;
#[cfg(any(test, feature = "scaler_test"))]
pub use instruction::MockInlineOperands;