Skip to content

Commit 75d4b3e

Browse files
committed
Add missing function "perform_get_address_size"
1 parent d562419 commit 75d4b3e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 6502 Architecture Plugin (v2.0.0)
1+
# 6502 Architecture Plugin (v2.0.1)
22
Author: **Vector 35 Inc**
33

44
_An architecture plugin for 6502 and binary view for NES roms._

__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -707,6 +707,9 @@ def init(self) -> bool:
707707
def perform_is_executable(self) -> bool:
708708
return True
709709

710+
def perform_get_address_size(self) -> int:
711+
return self.address_size
712+
710713
def perform_get_entry_point(self) -> int:
711714
return struct.unpack("<H", self.read(0xfffc, 2))[0]
712715

plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"Windows": "no special instructions, package manager is recommended"
2626
},
2727
"dependencies": {},
28-
"version": "2.0.0",
28+
"version": "2.0.1",
2929
"author": "Vector 35 Inc",
3030
"minimumbinaryninjaversion": 1200
31-
}
31+
}

0 commit comments

Comments
 (0)