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 中。
andi $t1 $t0 0xFFFF #$t1 contains one half of $t0 lui $t2 0xFFFF and $t1 $t0 $t2 #$t1 contains the other half of $t0