aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2023-12-07 23:00:09 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2023-12-07 23:00:09 +0100
commitf4a9fdb3357ce1a2dfc12cbb0fee6b915bc810c4 (patch)
treef250376867477ac309d9fed4333224efe2d3969d /tests
parent647e3646c2f686ce236059b935336c43c8a9a074 (diff)
downloadjuicebox-asm-f4a9fdb3357ce1a2dfc12cbb0fee6b915bc810c4.tar.gz
juicebox-asm-f4a9fdb3357ce1a2dfc12cbb0fee6b915bc810c4.zip
remove prelude
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) => {{