aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/insn/test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/insn/test.rs')
-rw-r--r--src/insn/test.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/insn/test.rs b/src/insn/test.rs
index e90d855..9bca200 100644
--- a/src/insn/test.rs
+++ b/src/insn/test.rs
@@ -3,13 +3,13 @@ use crate::{Asm, Imm16, MemOp, Reg32, Reg64};
impl Test<Reg64, Reg64> for Asm {
fn test(&mut self, op1: Reg64, op2: Reg64) {
- self.encode_rr(0x85, op1, op2);
+ self.encode_rr(&[0x85], op1, op2);
}
}
impl Test<Reg32, Reg32> for Asm {
fn test(&mut self, op1: Reg32, op2: Reg32) {
- self.encode_rr(0x85, op1, op2);
+ self.encode_rr(&[0x85], op1, op2);
}
}