asmkit-rs 0.3.1

Portable assembler toolkit: decoding and encoding of various architectures
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(non_upper_case_globals)]
pub mod assembler;
pub mod emitter;
pub mod instdb;
pub mod operands;

pub use crate::core::operand::imm;
pub use assembler::*;
pub use emitter::*;
pub use operands::*;