govanify@ThinkPadW500 ~ $ cat test.py
from capstone import *
CODE= b"\x28\x0c\x00\x70"
md = Cs(CS_ARCH_MIPS, CS_MODE_32)
for i in md.disasm(CODE, 0x1000):
print("0x%x:\t%s\t%s" %(i.address, i.mnemonic, i.op_str))
govanify@ThinkPadW500 ~ $ python test.py
govanify@ThinkPadW500 ~ $
280c0070 should be disassembled as "padduw at, zero, zero" but is instead not implemented by capstone
280c0070 should be disassembled as "padduw at, zero, zero" but is instead not implemented by capstone