diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /capstone/bindings/python/test_evm.py | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'capstone/bindings/python/test_evm.py')
-rwxr-xr-x | capstone/bindings/python/test_evm.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/capstone/bindings/python/test_evm.py b/capstone/bindings/python/test_evm.py new file mode 100755 index 000000000..81f646423 --- /dev/null +++ b/capstone/bindings/python/test_evm.py @@ -0,0 +1,29 @@ +#!/usr/bin/env python + +# Capstone Python bindings, by Nguyen Anh Quynnh <aquynh@gmail.com> + +from __future__ import print_function +from capstone import * +from xprint import to_hex + +CODE = "\x60\x61\x50" +cs = Cs(CS_ARCH_EVM, 0) +cs.detail = True + +print("Platform: EVM") +print("Code: %s" %to_hex(CODE)) +print("Disasm:") + +for i in cs.disasm(CODE, 0x80001000): + print("0x%x:\t%s\t%s" %(i.address, i.mnemonic, i.op_str)) + if i.pop > 0: + print("\tPop: %u" %i.pop) + if i.push > 0: + print("\tPush: %u" %i.push) + if i.fee > 0: + print("\tGas fee: %u" %i.fee) + if len(i.groups) > 0: + print("\tGroups: ", end=''), + for m in i.groups: + print("%s " % i.group_name(m), end=''), + print() |