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.
我必须检查一个数字是偶数还是奇数。
我的策略:
如何将寄存器值的最后一位与 0 或 1 进行比较?
我试过了:
andi $t7, $t0, 0 # where $t0 = 3 in decimal so should be 0b11
它不起作用:(有什么提示吗?