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.
我在使用 MIPS 转换输入(十进制数)并转换为八进制并显示该数字时遇到问题。在项目中,我必须使用Masking,有没有好的示例代码?
要屏蔽除正在$t0使用的数字的底部 3 位以外的所有位:
$t0
andi $t1,$t0, 0x7 # 0x7 is binary 0111