aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/prelude.rs
blob: d8dd9129c5ff7249595cadb2c5f2be346f0f8c62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
//! Crate prelude, which can be used to import the most important types at once.

pub use crate::Asm;
pub use crate::MemOp;

pub use crate::imm::{Imm16, Imm32, Imm64, Imm8};
pub use crate::label::Label;
pub use crate::reg::{Reg16, Reg32, Reg64, Reg8};

pub use crate::insn::{Add, Call, Cmp, Dec, Jmp, Jnz, Jz, Mov, Test};