- This showed several minor fini issues (rlang, rfs, regg, rflag) * Fixes in r_core_disassemble() - Honor delta and r_asm_set_pc() * Fix RHash bindings and add it into .deps for RCore
9 lines
193 B
Python
9 lines
193 B
Python
#!/usr/bin/python
|
|
from r2.r_core import RFlag
|
|
f=RFlag()
|
|
f.set("hello", 10, 20, 0);
|
|
f.set("world", 30, 40, 0);
|
|
f.list(False)
|
|
p=f.get("hello")
|
|
print "name: %s"%p.name
|
|
print "offs: 0x%x"%p.offset
|