Update state views when memory is modified through the debugger (since registers can be memory-mapped)

This commit is contained in:
AJR 2021-02-09 17:48:48 -05:00
parent 5e59acc819
commit 9a9f696239

View File

@ -825,6 +825,7 @@ void device_debug::instruction_hook(offs_t curpc)
if (debugcpu.memory_modified())
{
machine.debug_view().update_all(DVT_DISASSEMBLY);
machine.debug_view().update_all(DVT_STATE);
machine.debugger().refresh_display();
}