Skip to content

Commit

Permalink
Actually fix semicolon placement when exporting bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaghettDev committed Jul 20, 2024
1 parent a7a6a6f commit 757bca8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BromaIDA.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "5.2.0"
VERSION = "5.2.1"
__AUTHOR__ = "SpaghettDev"

PLUGIN_NAME = "BromaIDA"
Expand Down
5 changes: 3 additions & 2 deletions broma_ida/broma/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from broma_ida.utils import popup


# TODO: overloads............
class BromaExporter:
"""Broma exporter of all time using regex (if you couldn't already tell)"""

Expand Down Expand Up @@ -99,11 +100,11 @@ def _get_broma_string(
broma_line_no_address.string[
:broma_line_no_address.span(0)[0]
]
}) = {self._target_platform} {hex(binding["address"])} {
}) = {self._target_platform} {hex(binding["address"])}; {
broma_line_no_address.string[
broma_line_no_address.span(0)[0]:
][2:]
};"""
}"""

broma_binding_platforms = self._parse_method_platforms(
parsed_broma_line.group(5)
Expand Down

0 comments on commit 757bca8

Please sign in to comment.