Merge remote-tracking branch 'origin/GP-1225_Dan_pcodeFrameUseropDisplay--SQUASHED'

This commit is contained in:
Ryan Kurtz 2021-11-23 13:52:57 -05:00
commit 185bc0b2c2
9 changed files with 163 additions and 16 deletions

View file

@ -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