程序代写
Flow Chart Decisions $t1 == $t2? Branch Instructions beq $t5, $t3, my_label Short for branch if equal If $t5 == $t3 then go to my_label Otherwise, continues to the next instruction Branch Instructions bne $t1, $t7, my_label Short for branch if not equal If $t1 != $t7 then go to my_label Otherwise, continues to the […]