summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-11-14 14:14:56 +0100
committer Olivier Galibert <galibert@pobox.com>2018-12-06 14:58:26 +0100
commit76575e6cdd8c08fb3fa6c02080c31d875545f0a8 (patch)
tree9cc35ba209c1ae44802230cac15e55fbbed5d8bb /src/emu/debug/debugcpu.h
parent057fcc429f726ee6f15637e5a49d7825c6eabe77 (diff)
watchpoint: prevent recursive multiple installs [O. Galibert]
Diffstat (limited to 'src/emu/debug/debugcpu.h')
-rw-r--r--src/emu/debug/debugcpu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/debug/debugcpu.h b/src/emu/debug/debugcpu.h
index e887c3244ed..adaf6a2ba46 100644
--- a/src/emu/debug/debugcpu.h
+++ b/src/emu/debug/debugcpu.h
@@ -132,6 +132,7 @@ public:
offs_t m_start_address[3]; // the start addresses of the checks to install
offs_t m_end_address[3]; // the end addresses
u64 m_masks[3]; // the access masks
+ bool m_installing; // prevent recursive multiple installs
void install(read_or_write mode);
void triggered(read_or_write type, offs_t address, u64 data, u64 mem_mask);
};