mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-16 09:34:15 -09:00
GP-2437: Change DBAddressFieldCodec to use FixedField10
This commit is contained in:
@@ -81,7 +81,7 @@ public class DebuggerEmuExampleScript extends GhidraScript {
|
||||
.getProjectData()
|
||||
.getRootFolder()
|
||||
.createFile("emu_example", program, monitor);
|
||||
try (UndoableTransaction tid = UndoableTransaction.start(program, "Init", true)) {
|
||||
try (UndoableTransaction tid = UndoableTransaction.start(program, "Init")) {
|
||||
AddressSpace space = program.getAddressFactory().getDefaultAddressSpace();
|
||||
entry = space.getAddress(0x00400000);
|
||||
Address dataEntry = space.getAddress(0x00600000);
|
||||
@@ -163,7 +163,7 @@ public class DebuggerEmuExampleScript extends GhidraScript {
|
||||
*/
|
||||
TraceTimeManager time = trace.getTimeManager();
|
||||
TraceSnapshot snapshot = time.getSnapshot(0, true);
|
||||
try (UndoableTransaction tid = UndoableTransaction.start(trace, "Emulate", true)) {
|
||||
try (UndoableTransaction tid = UndoableTransaction.start(trace, "Emulate")) {
|
||||
for (int i = 0; i < 10; i++) {
|
||||
println("Executing: " + thread.getCounter());
|
||||
thread.stepInstruction();
|
||||
|
||||
Reference in New Issue
Block a user