lief 1.0.0

Official Rust bindings for LIEF
//! AArch64 architecture-related namespace

pub mod instruction;
pub mod opcodes;
pub mod operands;
pub mod registers;

#[doc(inline)]
pub use opcodes::Opcode;

#[doc(inline)]
pub use registers::{Reg, SysReg};

#[doc(inline)]
pub use instruction::Instruction;

#[doc(inline)]
pub use operands::Operands;

#[doc(inline)]
pub use operands::Operand;