mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
99c60a82de
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"