Question: undefined I am trying to simulate the fibonacci numbers with MIPS by translating C codes. I have translated the above C code to MIPS below
undefined
I am trying to simulate the fibonacci numbers with MIPS by translating C codes. I have translated the above C code to MIPS below (WITHOUT RECURSION) but every time I run the program it gives gives me an error when it enters the loop the second time that says "Attempt to execute non-instruction at 0x0040004c"
Is there any way to fix this or improve my codes
- lab2 Test - Notepad File Edit Format View Help %% C codes %% > int main { int a = 0; int b = 1; int result = 0; int n = 5; for(int i 1; i
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
