Question: Please translate the following C language code into MIPS. Also put comments in each line of MIPS A.) / $s0 -> a, $s1 -> b
Please translate the following C language code into MIPS. Also put comments in each line of MIPS A.) / $s0 -> a, $s1 -> b // $s2 -> c, $s3 -> d // Ss4 -> t int a = 8, b = 10, c = 20, d =15, t; t = (a + c) (d + b) 10; B.) // $s0 -> a, $s1 -> b int a = 10, b = 15; if (a + a == b) { a = a + b; b = 0; }else { b = a b; } This is what i have for part A addi $s0, $0, 8 addi $s1, $0, 10 addi $s2, $0, 20 addi $s3, $0, 15
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
