TrivialRen7159 TrivialRen7159 27-05-2023 Engineering contestada Explain what the following C code does and convert it to MIPS assembly language. Include instructions to use the stack properly. int funl (int x, int y) { if (x == 0) return y; else return fun1 (x - 1, x + y); }