MCPcopy Create free account
hub / github.com/capstone-engine/capstone / test_cs_disasm_quick

Function test_cs_disasm_quick

bindings/python/tests/test_lite.py:61–69  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

59
60# ## Test cs_disasm_quick()
61def test_cs_disasm_quick():
62 for (arch, mode, code, comment, syntax) in all_tests:
63 print('*' * 40)
64 print("Platform: %s" % comment)
65 print("Disasm:"),
66 print(code.hex(' '))
67 for (addr, size, mnemonic, op_str) in cs_disasm_lite(arch, mode, code, 0x1000):
68 print("0x%x:\t%s\t%s" % (addr, mnemonic, op_str))
69 print()
70
71
72# ## Test class Cs

Callers

nothing calls this directly

Calls 2

cs_disasm_liteFunction · 0.85
hexMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…