From e169a010c4942c610314a335e7c79f0cb421eef1 Mon Sep 17 00:00:00 2001 From: johannst Date: Sun, 5 Mar 2023 21:22:11 +0000 Subject: deploy: 8316b628bbc9945fd1d08305317cf49a6482801f --- src/juicebox_asm/insn/call.rs.html | 16 ++++++++++++++++ src/juicebox_asm/insn/nop.rs.html | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 src/juicebox_asm/insn/call.rs.html create mode 100644 src/juicebox_asm/insn/nop.rs.html (limited to 'src/juicebox_asm/insn') diff --git a/src/juicebox_asm/insn/call.rs.html b/src/juicebox_asm/insn/call.rs.html new file mode 100644 index 0000000..c9d073e --- /dev/null +++ b/src/juicebox_asm/insn/call.rs.html @@ -0,0 +1,16 @@ +call.rs - source
1
+2
+3
+4
+5
+6
+7
+
use crate::prelude::*;
+
+impl Call<Reg64> for Asm {
+    fn call(&mut self, op1: Reg64) {
+        self.encode_r(0xff, 0x2, op1);
+    }
+}
+
+
\ No newline at end of file diff --git a/src/juicebox_asm/insn/nop.rs.html b/src/juicebox_asm/insn/nop.rs.html new file mode 100644 index 0000000..49a1571 --- /dev/null +++ b/src/juicebox_asm/insn/nop.rs.html @@ -0,0 +1,16 @@ +nop.rs - source
1
+2
+3
+4
+5
+6
+7
+
use crate::Asm;
+
+impl Asm {
+    pub fn nop(&mut self) {
+        self.emit(&[0x90]);
+    }
+}
+
+
\ No newline at end of file -- cgit v1.2.3