From 872cf6d06f4d77637b4627fdc583bab79ee2372f Mon Sep 17 00:00:00 2001 From: johannst Date: Mon, 27 Feb 2023 22:52:40 +0000 Subject: deploy: 6486b862edc2750dba83848f62d6c9f3d4c6d3c2 --- src/juicebox_asm/insn/jmp.rs.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/juicebox_asm/insn/jmp.rs.html (limited to 'src/juicebox_asm/insn/jmp.rs.html') diff --git a/src/juicebox_asm/insn/jmp.rs.html b/src/juicebox_asm/insn/jmp.rs.html new file mode 100644 index 0000000..f3e4859 --- /dev/null +++ b/src/juicebox_asm/insn/jmp.rs.html @@ -0,0 +1,16 @@ +jmp.rs - source
1
+2
+3
+4
+5
+6
+7
+
use crate::prelude::*;
+
+impl Jmp<&mut Label> for Asm {
+    fn jmp(&mut self, op1: &mut Label) {
+        self.encode_jmp_label(&[0xe9], op1);
+    }
+}
+
+
\ No newline at end of file -- cgit v1.2.3