Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前在问自己这是如何工作的。示例:如果我将一个值加载到 $t0 中,然后在下一个操作中加载另一个值,旧的是否会与新的聚合,还是旧的被丢弃并消失,而新的会出现?
例子:
lw $t0, 15 # $t0 := 15 lw $t0, 8 # $t0 := 23 or 8?
在此先感谢克洛伊斯。
旧值被替换。如果你想要积累,你必须通过使用add指令明确地说出来。
add
作为旁注,您通常会使用li而不是lw加载立即值(或者ori 如果您的汇编程序不支持伪指令)。
li
lw
ori