diff options
| author | 2018-11-14 14:14:56 +0100 | |
|---|---|---|
| committer | 2018-12-06 14:58:26 +0100 | |
| commit | 76575e6cdd8c08fb3fa6c02080c31d875545f0a8 (patch) | |
| tree | 9cc35ba209c1ae44802230cac15e55fbbed5d8bb /src/emu/debug/debugcpu.h | |
| parent | 057fcc429f726ee6f15637e5a49d7825c6eabe77 (diff) | |
watchpoint: prevent recursive multiple installs [O. Galibert]
Diffstat (limited to 'src/emu/debug/debugcpu.h')
| -rw-r--r-- | src/emu/debug/debugcpu.h | 1 |
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); }; |
