chore: FFT giants, factor tables, spectral class map, block-processor chain

This commit is contained in:
2026-08-16 21:14:51 +03:00
parent 72c1fec3d0
commit 304a926ea4
11 changed files with 3831 additions and 882 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 = {"180008140","180039aa0","181c5cd10","18003f1a0","18003f600"};
String[] targets = {"180008140","180039b00","18003a2a0","18003b6c0","180034280","18003f1a0","18003f600","1800356f0","18052e130","18052df60"};
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<300) {
Reference r = it.next();
pw.println(" from " + r.getFromAddress() + " type=" + r.getReferenceType());
n++;