summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-02-09 17:48:48 -0500
committer AJR <ajrhacker@users.noreply.github.com>2021-02-09 17:48:48 -0500
commit9a9f696239339cda1c04a97a3819fbf4e8cc336e (patch)
treee7b7152773c9d098780115970adfdac6d82cb041 /src/emu
parent5e59acc819d032f22c5fb68b430adfe0ad392fa7 (diff)
Update state views when memory is modified through the debugger (since registers can be memory-mapped)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/debug/debugcpu.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/debug/debugcpu.cpp b/src/emu/debug/debugcpu.cpp
index 3a06e1f8e42..da0a1f72ce1 100644
--- a/src/emu/debug/debugcpu.cpp
+++ b/src/emu/debug/debugcpu.cpp
@@ -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();
}