Question
Hi, I have the below exercise to create a circuit in logisim: Build a circuit that computes all the Fibonacci numbers not exceeding 2^32-1. The
Hi, I have the below exercise to create a circuit in logisim:
Build a circuit that computes all the Fibonacci numbers not exceeding 2^32-1. The Fibonacci numbers are a sequence where the first two num- bers are 1.1, and every next number is the sum of its two predecessors. Here is the beginning of the sequence: 1,1,2,3,5,8, 13.1. Indeed 1+1=2, 1+2=3, 2+3 = 5, etc. Mathematically speaking, you are producing the sequence a1, a2: .. where an 1,02 1, and for all k > 2, ak Use a pair of 32-bit registers to hold the last two members of the squence. You may utilise the Arithmetic library of Logisim for the 32- bit adder (or anything else you want to use). Your circuit has one input pin: the clock, and three output pins, a 6-bit k, a 32-bit a, and a single digit stop. The circuit should assert the values k and a, where k 1,2,... on the corresponding output pins at the end of each consecutive clock cycle until the current Fibbonaci number exceeds 2^32-1, at which point the stop signal must go up by the end of the clock cycle.
Can anyone help me on this with some picture as well because I'm kinda new with this program. thank you
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started