mirror of
https://github.com/cemu-project/idapython.git
synced 2025-04-07 11:56:41 +02:00

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"