1 2 3 4 5 6 7 8 9 10 11 12
//! Instruction constants and identifiers. pub mod code; pub mod mnemonic; pub mod config; pub use code::*; pub use mnemonic::*; pub use config::*; /// Maximum number of operands an instruction can hold. pub const MAX_OPERAND_COUNT: usize = 7;