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.
我有一个可以控制的名为 $offset 的寄存器。我想知道如何重写 lw 命令,而不是单词 off in
lw $a off($b)
我必须要 $offset 寄存器的内容。
MIPS 程序集不支持这一点。
你需要做的是:
add $c $b $offset lw $a 0($c)