cemu-idapython/examples/ex_debug_names.py
2015-04-20 14:26:30 +02:00

16 lines
373 B
Python

import idaapi
def main():
if not idaapi.is_debugger_on():
print "Please run the process first!"
return
if idaapi.get_process_state() != -1:
print "Please suspend the debugger first!"
return
dn = idaapi.get_debug_names(idaapi.cvar.inf.minEA, idaapi.cvar.inf.maxEA)
for i in dn:
print "%08x: %s" % (i, dn[i])
main()