you will take in A, B, and C, where A and B are the first two numbers of your fibonacci sequence (in the default sequenc
Posted: Sat May 14, 2022 3:40 pm
you will take in A, B, and C, where A and B are the first two
numbers of your fibonacci sequence (in the default sequence it
would be "1" and "1"); and C is the Kth digit to count to after the
first two numbers. so if C=0 you return A+B, if C=1, return
B+(A+B), etc. Implement as your choice of Moore or Mealy machine.
provide the diagrams and the associated verilog code
numbers of your fibonacci sequence (in the default sequence it
would be "1" and "1"); and C is the Kth digit to count to after the
first two numbers. so if C=0 you return A+B, if C=1, return
B+(A+B), etc. Implement as your choice of Moore or Mealy machine.
provide the diagrams and the associated verilog code