aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/insn/add.rs
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2023-02-27 23:35:32 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2023-02-27 23:39:25 +0100
commitd44466c852dd353166c79d1cc618646b21e17f8c (patch)
tree43881e9164badf11206785688b4787859b710c02 /src/insn/add.rs
parentfdc967fb7a4c8417e846a7c2b1656e3d482967cd (diff)
downloadjuicebox-asm-d44466c852dd353166c79d1cc618646b21e17f8c.tar.gz
juicebox-asm-d44466c852dd353166c79d1cc618646b21e17f8c.zip
Add JNZ and Reg32 ADD, DEC, TEST for readme example
Diffstat (limited to 'src/insn/add.rs')
-rw-r--r--src/insn/add.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/insn/add.rs b/src/insn/add.rs
index b8456c4..3757d14 100644
--- a/src/insn/add.rs
+++ b/src/insn/add.rs
@@ -5,3 +5,9 @@ impl Add<Reg64, Reg64> for Asm {
self.encode_rr(0x01, op1, op2);
}
}
+
+impl Add<Reg32, Reg32> for Asm {
+ fn add(&mut self, op1: Reg32, op2: Reg32) {
+ self.encode_rr(0x01, op1, op2);
+ }
+}