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
+2 -2
View File
@@ -8,7 +8,7 @@ import java.io.PrintWriter;
public class SearchRefs extends GhidraScript {
@Override
public void run() throws Exception {
String[] targets = {"18052e260","180536300","180535880","180536f90","18052da00"};
String[] targets = {"18003fa20","1800025e0","180008500","1800104e0"};
AddressSpace as = currentProgram.getAddressFactory().getDefaultAddressSpace();
PrintWriter pw = new PrintWriter(new java.io.BufferedWriter(
new java.io.FileWriter("/home/m/re-tools/xrefs.txt")));
@@ -18,7 +18,7 @@ public class SearchRefs extends GhidraScript {
pw.println("### TARGET " + ts);
ReferenceIterator it = currentProgram.getReferenceManager().getReferencesTo(t);
int n=0;
while (it.hasNext() && n<200) {
while (it.hasNext() && n<120) {
Reference r = it.next();
pw.println(" from " + r.getFromAddress() + " type=" + r.getReferenceType());
n++;