From 2294180c3778d0fcfa877818e98c420fcd54bb8a Mon Sep 17 00:00:00 2001 From: johannst Date: Tue, 5 Dec 2023 22:08:06 +0000 Subject: deploy: 7e98f5def5942969f97f5f015e7fb8417793d132 --- src/juicebox_asm/insn/cmp.rs.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/juicebox_asm/insn/cmp.rs.html (limited to 'src/juicebox_asm/insn/cmp.rs.html') diff --git a/src/juicebox_asm/insn/cmp.rs.html b/src/juicebox_asm/insn/cmp.rs.html new file mode 100644 index 0000000..b50d90d --- /dev/null +++ b/src/juicebox_asm/insn/cmp.rs.html @@ -0,0 +1,15 @@ +cmp.rs - source
1
+2
+3
+4
+5
+6
+7
+
use crate::prelude::*;
+
+impl Cmp<MemOp, Imm16> for Asm {
+    fn cmp(&mut self, op1: MemOp, op2: Imm16) {
+        self.encode_mi(0x81, 0x7, op1, op2);
+    }
+}
+
\ No newline at end of file -- cgit v1.2.3