Write the equivalent assembly code if you were to translate from C to MIPS assembly: a) for (i = 1; i < 8; i++) sum += i
Posted: Sat Jul 09, 2022 11:47 am
Write the equivalent assembly code if you were to translate fromC to MIPS assembly:
a) for (i = 1; i < 8; i++)
sum += i;
b) if (i==j)
f = g - h;
else
f = g + h;
a) for (i = 1; i < 8; i++)
sum += i;
b) if (i==j)
f = g - h;
else
f = g + h;