MIPS assembly for a simple for loop

后端 未结 4 1411
长发绾君心
长发绾君心 2021-02-09 00:24

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

4条回答
提交回复
热议问题