ret2jazzy / disasm.pro

A realtime assembler/disassembler (formerly known as disasm.ninja)
https://disasm.pro/
290 stars 31 forks source link

BNE bug? #5

Closed 5HT closed 1 year ago

5HT commented 1 year ago

disasm.pro has bugs in MIPS dasm:

  BE: 14 40 00 0E
  LE: 0E 00 40 14

For some reason it uses 2-operand bne

  bnez $v0, 0x3C

while it should be 3-way bne instruction:

 bne $v0, $r0, 0x3C

While @loadzero/mipsdis is fine.