- 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
12 lines
170 B
Python
Executable file
12 lines
170 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
from r2.r_core import *
|
|
|
|
b = RBuffer ()
|
|
print dir(b)
|
|
|
|
|
|
rs = RSystem()
|
|
str = rs.cmd_str ("ls", "")
|
|
#str = RSystem.cmd_str ("ls", "")
|
|
print "((%s))"%str
|