diff options
author | johannst <johannst@users.noreply.github.com> | 2024-12-13 21:12:22 +0000 |
---|---|---|
committer | johannst <johannst@users.noreply.github.com> | 2024-12-13 21:12:22 +0000 |
commit | efd6fd88d2c73ae48ff74ba9e772e2347009fe9e (patch) | |
tree | 72fb755ffc8f3e5b250c20e9596c107ff5ed2c61 /src/fib | |
parent | 22f0c8c5d4b3604227187b9843737c23be75ba75 (diff) | |
download | juicebox-asm-efd6fd88d2c73ae48ff74ba9e772e2347009fe9e.tar.gz juicebox-asm-efd6fd88d2c73ae48ff74ba9e772e2347009fe9e.zip |
deploy: e6095b086f6e2429fb952ae75a193dc89b4b9082
Diffstat (limited to 'src/fib')
-rw-r--r-- | src/fib/fib.rs.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fib/fib.rs.html b/src/fib/fib.rs.html index 0b7a4bf..32ebea0 100644 --- a/src/fib/fib.rs.html +++ b/src/fib/fib.rs.html @@ -124,7 +124,7 @@ <span class="kw">let </span>sum = Reg64::rax; <span class="kw">let </span>tmp = Reg64::rcx; - <span class="kw">let </span>prv = Reg64::rbx; + <span class="kw">let </span>prv = Reg64::rdx; asm.mov(tmp, Imm64::from(<span class="number">0</span>)); asm.mov(prv, Imm64::from(<span class="number">1</span>)); |