1 2 3 4 5 6 7 8 9
//! Binary instruction encoders for x86_64, AArch64, and RISC-V. pub mod aarch64; pub mod arx64; pub mod riscv; pub mod traits; pub mod x86_64; pub use traits::{InstructionEncoder, ParsedInstruction};