summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/dimemory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/dimemory.cpp')
-rw-r--r--src/emu/dimemory.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/emu/dimemory.cpp b/src/emu/dimemory.cpp
index 84b161a5a13..0c1caace023 100644
--- a/src/emu/dimemory.cpp
+++ b/src/emu/dimemory.cpp
@@ -117,34 +117,6 @@ void device_memory_interface::set_addrmap(int spacenum, address_map_constructor
//-------------------------------------------------
-// dump - dump memory tables to the given file in
-// human-readable format
-//-------------------------------------------------
-
-void device_memory_interface::dump(FILE *file) const
-{
- for (auto const &space : m_addrspace)
- if (space) {
- fprintf(file,
- "\n\n"
- "====================================================\n"
- "Device '%s' %s address space read handler dump\n"
- "====================================================\n",
- device().tag(), space->name());
- space->dump_map(file, read_or_write::READ);
-
- fprintf(file,
- "\n\n"
- "====================================================\n"
- "Device '%s' %s address space write handler dump\n"
- "====================================================\n",
- device().tag(), space->name());
- space->dump_map(file, read_or_write::WRITE);
- }
-}
-
-
-//-------------------------------------------------
// memory_translate - translate from logical to
// phyiscal addresses; designed to be overridden
// by the actual device implementation if address