aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/insn/inc.rs
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2024-12-06 23:32:58 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2024-12-07 00:57:12 +0100
commit2699292790476eccd726fc5dae179b3a688a1468 (patch)
tree6ddc18ddabb5449cf4809b0ffb46175ee1bdb93b /src/insn/inc.rs
parent36345d8ab93d23d9f94372863e3747a07222b6ce (diff)
downloadjuicebox-asm-2699292790476eccd726fc5dae179b3a688a1468.tar.gz
juicebox-asm-2699292790476eccd726fc5dae179b3a688a1468.zip
asm: add initial support for memory operand only instructions
* add dec, inc instruction for with memory operand
Diffstat (limited to 'src/insn/inc.rs')
-rw-r--r--src/insn/inc.rs26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/insn/inc.rs b/src/insn/inc.rs
index ede780a..1530d63 100644
--- a/src/insn/inc.rs
+++ b/src/insn/inc.rs
@@ -1,5 +1,5 @@
use super::Inc;
-use crate::{Asm, Reg32, Reg64};
+use crate::{Asm, MemOp16, MemOp32, MemOp64, MemOp8, Reg32, Reg64};
impl Inc<Reg64> for Asm {
fn inc(&mut self, op1: Reg64) {
@@ -12,3 +12,27 @@ impl Inc<Reg32> for Asm {
self.encode_r(0xff, 0, op1);
}
}
+
+impl Inc<MemOp8> for Asm {
+ fn inc(&mut self, op1: MemOp8) {
+ self.encode_m(0xfe, 0, op1);
+ }
+}
+
+impl Inc<MemOp16> for Asm {
+ fn inc(&mut self, op1: MemOp16) {
+ self.encode_m(0xff, 0, op1);
+ }
+}
+
+impl Inc<MemOp32> for Asm {
+ fn inc(&mut self, op1: MemOp32) {
+ self.encode_m(0xff, 0, op1);
+ }
+}
+
+impl Inc<MemOp64> for Asm {
+ fn inc(&mut self, op1: MemOp64) {
+ self.encode_m(0xff, 0, op1);
+ }
+}