Using Mips, complete the following:
Please use MipsWrite a function to compute the value of a polynomial. It should have three arguments $a0 the coefficient array $a1 the degree of the polynomial $a2 the value of x You can use Horner’s rule to efficiently compute the polynomial, where d is the degre of the polynomial. result c[d] for (i d-1; 10; 1-X result result * x result: result + c[1] Test your code with at least two
OR
OR