GP-4241: Discoverable per-arch userop-lib framework and AARCH64 port.

This commit is contained in:
Dan
2026-02-03 16:08:01 +00:00
parent 6bff7b6646
commit 6ced49d1d7
26 changed files with 1237 additions and 441 deletions

View File

@@ -141,7 +141,8 @@ public class DebuggerEmuExampleScript extends GhidraScript implements FlatDebugg
PcodeEmulator emulator = new PcodeEmulator(access.getLanguage(), writer.callbacks()) {
@Override
protected PcodeUseropLibrary<byte[]> createUseropLibrary() {
return new DemoPcodeUseropLibrary(language, DebuggerEmuExampleScript.this);
return super.createUseropLibrary().compose(
new DemoPcodeUseropLibrary(language, DebuggerEmuExampleScript.this));
}
};
// Conventionally, emulator threads are named after their trace thread's path.