Skip to content

Commit

Permalink
Merge pull request #24 from robbert1978/master
Browse files Browse the repository at this point in the history
support for 9.0
  • Loading branch information
L4ys authored Aug 15, 2024
2 parents 2cb0cb5 + ad955ba commit d80b0ff
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions LazyIDA.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,13 +464,15 @@ def init(self):
global ARCH
global BITS
ARCH = idaapi.ph_get_id()
info = idaapi.get_inf_structure()
if info.is_64bit():
BITS = 64
elif info.is_32bit():

if idaapi.inf_is_64bit():
BTIS = 64
elif idaapi.inf_is_32bit_exactly():
BITS = 32
else:
elif idaapi.idaapi.inf_is_16bit():
BITS = 16
else:
raise ValueError

print("LazyIDA (v1.0.0.3) plugin has been loaded.")

Expand Down

0 comments on commit d80b0ff

Please sign in to comment.