Question: Circle the most appropriate choice for the most optimized MIPS assembly program to implement the following compound expression applying a fall through technique: if

Circle the most appropriate choice for the most optimized MIPS assembly program to implement the following compound expression applying a fall through technique: if (($t1 < 0) || ($t2 < 0)) {$t3++; } betz $t1, L1 bgez $t2, next L1: addiu $t3, $t3, 1 next: b) Bltz $t1, L1 bgez $t2, next L1: addiu $t3, $t3, 1 Next: c) Bltz $t1, L1 blez $t2, next LI: addiu $t3, $t3, 1 Next: d) Non of the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
