标签: assembly expression mips
在MIPS中表示以下表达式的最有效方法是什么
$v0 = $a0 * $a1 / $a3;
答案 0 :(得分:2)
保留运营商优先权:
mult $t0,$a0,$a1 div $v0,$t0,$a3
当然假设寄存器$ t0尚未使用。