diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-02-27 21:00:26 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-02-27 21:00:26 +0100 |
commit | 957663f5d483b1abaa3f5af25e32c274218319d5 (patch) | |
tree | 8c52595b3307889094005c46bf46aa98b17384f5 /tests | |
parent | 3e184b0b47d203cd37089296e0c49c9219c83b26 (diff) | |
download | juicebox-asm-957663f5d483b1abaa3f5af25e32c274218319d5.tar.gz juicebox-asm-957663f5d483b1abaa3f5af25e32c274218319d5.zip |
Move prelude to crate level and make public
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mov.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/mov.rs b/tests/mov.rs index fce50a1..903bd5f 100644 --- a/tests/mov.rs +++ b/tests/mov.rs @@ -1,6 +1,4 @@ -use juicebox_asm::Asm; -use juicebox_asm::MemOp; -use juicebox_asm::{Imm16, Imm32, Imm64, Imm8}; +use juicebox_asm::prelude::*; use juicebox_asm::{Reg16::*, Reg32::*, Reg64::*, Reg8::*}; macro_rules! mov { |