diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-02-27 22:44:25 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-02-27 22:49:49 +0100 |
commit | ac0bbe89d2040c7ee37dd741e12632aac307a06a (patch) | |
tree | aa8dd18a765cf4f17bedcc1787b46d83b8fb5bf0 | |
parent | 23f5da9983036cf37dedc0511a930fcbc7a8bc0e (diff) | |
download | juicebox-asm-ac0bbe89d2040c7ee37dd741e12632aac307a06a.tar.gz juicebox-asm-ac0bbe89d2040c7ee37dd741e12632aac307a06a.zip |
Fixed tests
-rw-r--r-- | tests/mov.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/mov.rs b/tests/mov.rs index 903bd5f..58c0508 100644 --- a/tests/mov.rs +++ b/tests/mov.rs @@ -1,5 +1,4 @@ -use juicebox_asm::prelude::*; -use juicebox_asm::{Reg16::*, Reg32::*, Reg64::*, Reg8::*}; +use juicebox_asm::prelude::{Reg16::*, Reg32::*, Reg64::*, Reg8::*, *}; macro_rules! mov { ($op1:expr, $op2:expr) => {{ |