实验目的 运用简单的MIPS实现一个能够整数加减乘除的计算器,同时使自己更加熟悉这些指令吧 MIPS代码 #sample example 'a small calculater’ # data section .data value: .word , , , , # : first num , : second num , : operation , :result msg0 : .asciiz " please choose the operation(1~4):\n\t\t1 : +,add…