From befd5331ec9770c64178a4acbc43642a7fc26c4d Mon Sep 17 00:00:00 2001 From: robojumper Date: Sun, 6 Oct 2024 19:54:10 +0200 Subject: [PATCH] Exclude pad_ symbols --- tools/ghidra_scripts/DecompMapToGhidra.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ghidra_scripts/DecompMapToGhidra.py b/tools/ghidra_scripts/DecompMapToGhidra.py index c31d2c5c..abcc1aa2 100644 --- a/tools/ghidra_scripts/DecompMapToGhidra.py +++ b/tools/ghidra_scripts/DecompMapToGhidra.py @@ -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