Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IDA 9.0 support #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions amie.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
import struct
import sys

import idaapi
import ida_allins
import ida_bytes
import ida_hexrays
import ida_ida
import ida_idaapi
import ida_idp
import ida_kernwin
Expand Down Expand Up @@ -314,8 +316,7 @@ def __init__(self):
self.hexrays_support = False

def init(self):
info = ida_idaapi.get_inf_structure()
if info.procName != "ARM":
if idaapi.ph_get_id() != idaapi.PLFM_ARM:
return ida_idaapi.PLUGIN_SKIP

ida_kernwin.UI_Hooks.hook(self)
Expand All @@ -335,8 +336,7 @@ def run(self, _):
return False

def database_inited(self, *_):
info = ida_idaapi.get_inf_structure()
if info.is_64bit():
if ida_ida.inf_is_64bit():
print("[AMIE] Using AArch64 architecture")
self.arch = AArch64()
else:
Expand Down