标签: assembly mips
我必须检查数字是偶数还是奇数。
我的策略:
如何将寄存器值的最后一位数字与0或1?
我试过了:
andi $t7, $t0, 0 # where $t0 = 3 in decimal so should be 0b11
它不起作用:( 任何提示?