1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod branch;
pub use branch::*;

mod register;
pub use register::*;

mod relocator;
pub use relocator::*;

mod writer;
pub use writer::*;

pub type TargetInstructionWriter = X86InstructionWriter;
pub type TargetRelocator = X86Relocator;
pub type TargetRegister = X86Register;
pub type TargetBranchCondition = X86BranchCondition;