Skip to content

Commit

Permalink
ARM arch name normalization (fka: arm _arch_id bugfix) (vivisect#668)
Browse files Browse the repository at this point in the history
* fix `ARMv7A` not having/being a valid archname, so `getArchByName()` returns None... causing `ArmModule.getArchId()` to return `None`

* undo the work that @jpsnyder submitted

---------

Co-authored-by: James Gross <[email protected]>
  • Loading branch information
atlas0fd00m and rakuy0 authored Aug 21, 2024
1 parent e29a86b commit c2fc612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion envi/archs/arm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ArmModule(envi.ArchitectureModule):

def __init__(self, name='ARMv7A'):
def __init__(self, name='arm'):
import envi.archs.thumb16.disasm as eatd
# these are required for setEndian() which is called from ArchitectureModule.__init__()
self._arch_dis = ArmDisasm()
Expand Down

0 comments on commit c2fc612

Please sign in to comment.