Merge remote-tracking branch 'origin/GP-1529_Dan_emuInterruptExtern--SQUASHED'

This commit is contained in:
Ryan Kurtz 2023-03-30 07:59:31 -04:00
commit 5e81cf5d83
25 changed files with 274 additions and 100 deletions

View file

@ -802,8 +802,10 @@ public class Disassembler implements DisassemblerConflictHandler {
disassembleInstructionBlock(block, blockMemBuffer, null, limit, null, false);
}
catch (Exception e) {
Msg.error(this, "Pseudo block disassembly failure at " + blockMemBuffer.getAddress() +
": " + e.getMessage(), e);
String message = "Pseudo block disassembly failure at " + blockMemBuffer.getAddress() +
": " + e.getMessage();
Msg.error(this, message, e);
reportMessage(message);
}
finally {