Question: Modify the Fibbonaci.asm program to use a macro (look at lines 41 and 42), you'll put the macro at the top of your code, and



Modify the Fibbonaci.asm program to use a macro (look at lines 41 and 42), you'll put the macro at the top of your code, and then put the word "done" where there's currently a li $v0, 10 You will do something like .macro done li $v0,10 syscall end macro And then "done" somewhere in the code that makes sense. 1 2 3 4 5 6 # Compute several Fibonacci numbers and put in array, then print . data fibs: .word 0 : 19 # "array of words to contain fib values size: .word 19 # size of "array" (agrees with array declaration) prompt: .asciiz "How many Fibonacci numbers to generate? (2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
