From d3e1eff9593501ff8677b9399e1f0625f415ec78 Mon Sep 17 00:00:00 2001 From: johannst Date: Thu, 7 Dec 2023 23:53:44 +0000 Subject: deploy: b5aea3fb5fcce31599e3d7397d5413a934132231 --- src/fib/fib.rs.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/fib') diff --git a/src/fib/fib.rs.html b/src/fib/fib.rs.html index 87a1bbf..f7b4aa6 100644 --- a/src/fib/fib.rs.html +++ b/src/fib/fib.rs.html @@ -76,13 +76,15 @@ 76 77 78 +79
//! Fibonacci example.
 //!
 //! Jit compile a function at runtime (generate native host code) to compute the fibonacci sequence
 //! to demonstrate the [`juicebox_asm`] crate.
 
-use juicebox_asm::prelude::*;
+use juicebox_asm::insn::*;
 use juicebox_asm::Runtime;
+use juicebox_asm::{Asm, Imm64, Label, Reg64};
 
 const fn fib_rs(n: u64) -> u64 {
     match n {
-- 
cgit v1.2.3