mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-1225: Fixing display of userops in toString and p-code stepper
This commit is contained in:
parent
5aa14e9401
commit
4f444f9db3
9 changed files with 163 additions and 16 deletions
|
@ -113,8 +113,9 @@ public class SleighAssembler implements Assembler {
|
|||
Address end = at.add(insbytes.length - 1);
|
||||
listing.clearCodeUnits(at, end, false);
|
||||
memory.setBytes(at, insbytes);
|
||||
dis.disassemble(at, new AddressSet(at));
|
||||
return listing.getInstructions(new AddressSet(at, end), true);
|
||||
AddressSet set = new AddressSet(at, end);
|
||||
dis.disassemble(at, set);
|
||||
return listing.getInstructions(set, true);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue