MIPS计算机的汇编指令“1w $s1,200($s2)”的功能是
MIPS计算机的汇编指令“1w $s1,200($s2)”的功能是
A、$sl=Memory[$s2+200]
B、$s2=Memory[$s1+200]
C、$s1=Memory[$s2]+200
D、$s2=Memory[$s1]+200
【正确答案】:A
【题目解析】:MIPS汇编语言的算术运算,教材100页表3.3 ,“1w $s1,200($s2)”的功能是$sl=Memory[$s2+200],从内存中取一个字到寄存器。
Top