code to print full Fibonacci sequence to the console. For example, if n = 5, print 0, 1, 1, 2, 3. Test your program by varying n. Please save the screenshot of the two following test cases: 1) n = 10 2) n = 18

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 8SA
icon
Related questions
Question

We will use Venus RISC-V simulator for the lab.

Please save screenshot of code and output

Based on fib.s, please rewrite the code to print full Fibonacci sequence to the console. For example, if n = 5, print 0, 1, 1, 2, 3. Test your program by varying n. Please save the screenshot of the two following test cases: 1) n = 10 2) n = 18 Save your code as task1.s.

Here is the fib.s:

.data .word 2, 4, 6, 8 n: .word 9 .text main: add t0, x0, x0 addi t1, x0, 1 la t3, n lw t3, 0(t3) fib: beq t3, x0, finish add t2, t1, t0 mv t0, t1 mv t1, t2 addi t3, t3, -1 j fib finish: addi a0, x0, 1 addi a1, t0, 0 ecall # print integer ecall addi a0, x0, 10 ecall # terminate ecall

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning