I need to translate this C code to MIPS assembly. Here is the C code:
int tmp = 0; for (int j = 0; j < 15; ++j) tmp = tmp * 2 + 3
Th
You don't set j ($t0) to zero before the loop.