chore: transform runtime model complete (stage kernels, slot map, driver loc)

This commit is contained in:
2026-08-16 22:56:26 +03:00
parent 9ec0470b86
commit 1e9bac7a42
5 changed files with 34 additions and 89 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 = {"18003fa20","1800025e0","180008500","1800104e0"};
String[] targets = {"182615f08","182615f20","182616208","182616220","1826164a0","1826159e8"};
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<120) {
while (it.hasNext() && n<150) {
Reference r = it.next();
pw.println(" from " + r.getFromAddress() + " type=" + r.getReferenceType());
n++;