summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2021-09-29 18:51:41 +0200
committer hap <happppp@users.noreply.github.com>2021-09-29 18:51:53 +0200
commit1ad5e294ffaea78708fad9373edbc0d36b8b8bad (patch)
treed404c08526c3ad8c723cf49e86ef33409d9ba954 /src/emu/debug
parentc6d4ca6cf24c6cd83e2752b4f5d513b073ef2b00 (diff)
dvmemory: remove outdated/unused FD1094_HACK
Diffstat (limited to 'src/emu/debug')
-rw-r--r--src/emu/debug/dvmemory.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/emu/debug/dvmemory.cpp b/src/emu/debug/dvmemory.cpp
index 2e384e90866..4b2556486d5 100644
--- a/src/emu/debug/dvmemory.cpp
+++ b/src/emu/debug/dvmemory.cpp
@@ -940,15 +940,6 @@ void debug_view_memory::write(u8 size, offs_t offs, u64 data)
if (offs >= (source.m_blocklength * source.m_numblocks))
return;
*(reinterpret_cast<u8 *>(source.m_base) + (offs / source.m_blocklength * source.m_blockstride) + (offs % source.m_blocklength)) = data;
-
-// hack for FD1094 editing
-#ifdef FD1094_HACK
- if (source.m_base == machine().root_device().memregion("user2"))
- {
- extern void fd1094_regenerate_key(running_machine &machine);
- fd1094_regenerate_key(machine());
- }
-#endif
}