This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import idaapi | |
from idc import * | |
class Reg: | |
def __init__(self, ea, value): | |
self.ea = ea | |
self.value = value | |
#self.cmd = cmd | |
class arm_mov_hook_t(idaapi.IDP_Hooks): |
NewerOlder