Question: Task 1 : Conversion Program You will write a MIPS assembly program that mimics this C + + code which includes a function call: Given:
Task : Conversion Program
You will write a MIPS assembly program that mimics this C code which includes a
function call:
Given: main does not have any variables in $ s registers. meaning that for this assignment
you don't have to worry about saving and restoring registers
A skeleton assembly program that you will complete to write your code is available to
you in the conv.asm file. Your solution MUST INCLUDE a welldesigned function
call. Space for the input, filter, result and result length will all be in the skeleton code
in the data section. For the sake of the autograder, do not include other mentions ofTask : Conversion Program
You will write a MIPS assembly program that mimics this C code which includes a function call:
void convint inp int filt int result int resultl
int filtsize ;
forint i ; i resultl; i
for int j ; j filtsize; j
Resulti inpi j filtj;
you dont need to implement main, our main will call conv for you
it is just included here so you can see how it is called
int main
int inp;
int resultlength ;
int result;
int filt
convinp filt, result, resultlength;
prints:
forint i ; i resultlength; i
printd resulti;
return ;
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
