aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/insn/xor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/insn/xor.rs')
-rw-r--r--src/insn/xor.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/insn/xor.rs b/src/insn/xor.rs
new file mode 100644
index 0000000..b1fdc48
--- /dev/null
+++ b/src/insn/xor.rs
@@ -0,0 +1,8 @@
+use super::Xor;
+use crate::{Asm, Reg64};
+
+impl Xor<Reg64, Reg64> for Asm {
+ fn xor(&mut self, op1: Reg64, op2: Reg64) {
+ self.encode_rr(&[0x31], op1, op2);
+ }
+}