Rizin
unix-like reverse engineering framework and cli tools
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
v
w
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerations
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
b
d
e
h
i
k
n
p
r
s
w
Properties
Events
Related Functions
Files
File List
File Members
All
$
.
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
.
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Events
Friends
Macros
Modules
Pages
test_evm.py
Go to the documentation of this file.
1
#!/usr/bin/env python
2
3
# Capstone Python bindings, by Nguyen Anh Quynnh <aquynh@gmail.com>
4
5
from
__future__
import
print_function
6
from
capstone
import
*
7
8
cs =
Cs
(CS_ARCH_EVM, 0)
9
cs.detail =
True
10
11
for
i
in
cs.disasm(
"\x60\x61\x55"
, 0x100):
12
print(
"0x%x:\t%s\t%s"
%(i.address, i.mnemonic, i.op_str))
13
if
i.pop > 0:
14
print(
"\tPop: %u"
%i.pop)
15
if
i.push > 0:
16
print(
"\tPush: %u"
%i.push)
17
if
i.fee > 0:
18
print(
"\tGas fee: %u"
%i.fee)
19
if
len
(i.groups) > 0:
20
print(
"\tThis instruction belongs to groups: "
, end=
''
),
21
for
m
in
i.groups:
22
print(
"%s "
% i.group_name(m), end=
''
),
23
print()
len
size_t len
Definition:
6502dis.c:15
capstone.Cs
Definition:
__init__.py:798
subprojects
capstone-bundled
bindings
python
test_evm.py
Generated by
1.9.1