diff options
author | 2016-12-10 13:11:40 +0100 | |
---|---|---|
committer | 2016-12-10 13:40:26 +0100 | |
commit | 998e196d55198c9550e67a93e0dad1e96b0b29ae (patch) | |
tree | bf5bb8b29f9c0473955efb94cf6900ea414effed /src/emu/dimemory.cpp | |
parent | 898090ffe90ab3185238f3682132f6182c46ec64 (diff) |
dimemory: Remove the magic bypass [O. Galibert]
Diffstat (limited to 'src/emu/dimemory.cpp')
-rw-r--r-- | src/emu/dimemory.cpp | 46 |
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 //------------------------------------------------- |