Skip to content

Commit

Permalink
Exclude pad_ symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
robojumper committed Oct 6, 2024
1 parent 1be4d62 commit 6c3ad08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ghidra_scripts/DecompMapToGhidra.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def parse_symbol(line):
vAddr = objs[2]
name = objs[5]

if name.startswith("gap_") or name == "*fill*" or name.startswith(".") or "........" in vAddr:
if name.startswith("pad_") or name.startswith("gap_") or name == "*fill*" or name.startswith(".") or "........" in vAddr:
return None
if default_sym_re.match(name):
return None
Expand Down

0 comments on commit 6c3ad08

Please sign in to comment.