-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Open
Labels
LLVMAnything LLVM relatedAnything LLVM relatedMipsArchArchNo-LLVM-supportCurrent LLVM doesn't support this architecture or extensionCurrent LLVM doesn't support this architecture or extension
Description
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
Metadata
Metadata
Assignees
Labels
LLVMAnything LLVM relatedAnything LLVM relatedMipsArchArchNo-LLVM-supportCurrent LLVM doesn't support this architecture or extensionCurrent LLVM doesn't support this architecture or extension