summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/dimemory.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2016-12-10 13:11:40 +0100
committer Olivier Galibert <galibert@pobox.com>2016-12-10 13:40:26 +0100
commit998e196d55198c9550e67a93e0dad1e96b0b29ae (patch)
treebf5bb8b29f9c0473955efb94cf6900ea414effed /src/emu/dimemory.cpp
parent898090ffe90ab3185238f3682132f6182c46ec64 (diff)
dimemory: Remove the magic bypass [O. Galibert]
Diffstat (limited to 'src/emu/dimemory.cpp')
-rw-r--r--src/emu/dimemory.cpp46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/emu/dimemory.cpp b/src/emu/dimemory.cpp
index e42ad28e9d3..cdb234cde79 100644
--- a/src/emu/dimemory.cpp
+++ b/src/emu/dimemory.cpp
@@ -182,52 +182,6 @@ bool device_memory_interface::memory_translate(address_spacenum spacenum, int in
//-------------------------------------------------
-// memory_read - perform internal memory
-// operations that bypass the memory system;
-// designed to be overridden by the actual device
-// implementation if internal read operations are
-// handled by bypassing the memory system
-//-------------------------------------------------
-
-bool device_memory_interface::memory_read(address_spacenum spacenum, offs_t offset, int size, u64 &value)
-{
- // by default, we don't do anything
- return false;
-}
-
-
-//-------------------------------------------------
-// memory_write - perform internal memory
-// operations that bypass the memory system;
-// designed to be overridden by the actual device
-// implementation if internal write operations are
-// handled by bypassing the memory system
-//-------------------------------------------------
-
-bool device_memory_interface::memory_write(address_spacenum spacenum, offs_t offset, int size, u64 value)
-{
- // by default, we don't do anything
- return false;
-}
-
-
-//-------------------------------------------------
-// memory_readop - perform internal memory
-// operations that bypass the memory system;
-// designed to be overridden by the actual device
-// implementation if internal opcode fetching
-// operations are handled by bypassing the memory
-// system
-//-------------------------------------------------
-
-bool device_memory_interface::memory_readop(offs_t offset, int size, u64 &value)
-{
- // by default, we don't do anything
- return false;
-}
-
-
-//-------------------------------------------------
// interface_validity_check - perform validity
// checks on the memory configuration
//-------------------------------------------------