chore: audio-chain xrefs, PACE-stub pattern, SpectralProcessor vftable id
This commit is contained in:
+2
-2
@@ -8,7 +8,7 @@ import java.io.PrintWriter;
|
||||
public class SearchRefs extends GhidraScript {
|
||||
@Override
|
||||
public void run() throws Exception {
|
||||
String[] targets = {"180008140","180039b00","18003a2a0","18003b6c0","180034280","18003f1a0","18003f600","1800356f0","18052e130","18052df60"};
|
||||
String[] targets = {"18052e260","180536300","180535880","180536f90","18052da00"};
|
||||
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<300) {
|
||||
while (it.hasNext() && n<200) {
|
||||
Reference r = it.next();
|
||||
pw.println(" from " + r.getFromAddress() + " type=" + r.getReferenceType());
|
||||
n++;
|
||||
|
||||
Reference in New Issue
Block a user