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.
如何从静态数据地址 0x10008000 开始移动到 0x10008008? 我不知道我是否错了,但这些地址是 3 个寄存器的,你不能存储在地址 0x10008001 中。
要将这 3 个单词加载到$t1 - $t3:
$t1 - $t3
lui $t0 0x1000 ori $t0 0x8000 lw $t1 0($t0) lw $t2 4($t0) lw $t3 8($t0)