寄存器值-MIPS
语言是MIPS。
$s2 = 0x00000046 ; $s1 = 0x000038c
以下代码后,$s2 的十六进制值是多少? :
add $s2, $s1, $s2
srl $s1, $s1, 4
or $s2, $s1, $s2
有人可以给我指路吗?
谢谢!
The language is MIPS.
$s2 = 0x00000046 ; $s1 = 0x000038c
What will be the $s2 value in Hex after the following code ? :
add $s2, $s1, $s2
srl $s1, $s1, 4
or $s2, $s1, $s2
Can some one show me the way ?
thnx !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可能有助于描述每条指令的作用,例如用伪代码或 C 语言:
It might help to describe what each instruction does, e.g. in pseudo code, or here in C: