chore: DSP kernel map (complex-mul/double-mul/max), DumpList getFunctionContaining fix

This commit is contained in:
2026-08-16 22:04:48 +03:00
parent 86483ce1fa
commit 9ec0470b86
6 changed files with 135 additions and 227 deletions
+1
View File
@@ -54,6 +54,7 @@ public class DumpList extends GhidraScript {
for (long a : targets) {
if (a < LO || a > HI) continue;
Function f = fm.getFunctionAt(as.getAddress(a));
if (f == null) f = fm.getFunctionContaining(as.getAddress(a));
if (f == null) {
pw.println("############ NO_FUNCTION 0x" + Long.toHexString(a) + " ############");
continue;