XOR use in MIPS Assembly

后端 未结 1 661
野性不改
野性不改 2021-01-29 07:12

Okay, I\'m pretty sure I\'ve used up all variations of possible XOR use to exchange $s0 with $s1, however, I still can\'t get it to work! It\'s MIPS Assembly and I\'m using MARS

相关标签:
1条回答
  • 2021-01-29 07:53

    Did you try

    xor $s0, $s0, $s1
    xor $s1, $s0, $s1
    xor $s0, $s0, $s1
    
    0 讨论(0)
提交回复
热议问题