cemu-idapython/python
elias.bachaalany 99c60a82de idautils.py: added procregs to identify registers and modified DecodeInstruction().
It is now possible to identify the registers of a decoded instruction with:

cmd = DecodeInstruction(here())
if cmd[0].is_reg(proc_regs.eax): print "EAX is used"

or something like:

if cmd[1].is_reg(proc_regs.al): print "al is used"
2009-10-19 07:17:22 +00:00
..
idautils.py idautils.py: added procregs to identify registers and modified DecodeInstruction(). 2009-10-19 07:17:22 +00:00
idc.py idc.py: Whitespace and indentation fixes 2009-10-17 21:12:15 +00:00
init.py added Choose2() support 2009-09-24 14:20:29 +00:00