aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/jmp.rs3
-rw-r--r--tests/mov.rs3
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/jmp.rs b/tests/jmp.rs
index 2524218..5f430ac 100644
--- a/tests/jmp.rs
+++ b/tests/jmp.rs
@@ -1,4 +1,5 @@
-use juicebox_asm::prelude::*;
+use juicebox_asm::insn::Jmp;
+use juicebox_asm::{Asm, Label};
#[test]
#[should_panic]
diff --git a/tests/mov.rs b/tests/mov.rs
index 58c0508..8cc0b19 100644
--- a/tests/mov.rs
+++ b/tests/mov.rs
@@ -1,4 +1,5 @@
-use juicebox_asm::prelude::{Reg16::*, Reg32::*, Reg64::*, Reg8::*, *};
+use juicebox_asm::insn::Mov;
+use juicebox_asm::{Asm, Imm16, Imm32, Imm64, Imm8, MemOp, Reg16::*, Reg32::*, Reg64::*, Reg8::*};
macro_rules! mov {
($op1:expr, $op2:expr) => {{