summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2018-06-23 17:53:14 -0400
committer arbee <rb6502@users.noreply.github.com>2018-06-23 17:53:14 -0400
commit2578a9ddcb8dbcf6b05e01cf7b5fb7d32cd14d54 (patch)
treec39081a030680e41b043e0d09a41b9e51303cee8
parente7f6bd1cc884481be1c41592f97a8703cbf093ac (diff)
m5074x: added missing memory_space_config() (nw)
-rw-r--r--src/devices/cpu/m6502/m5074x.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/devices/cpu/m6502/m5074x.cpp b/src/devices/cpu/m6502/m5074x.cpp
index 74e7a8e5ba0..8f4cc45a693 100644
--- a/src/devices/cpu/m6502/m5074x.cpp
+++ b/src/devices/cpu/m6502/m5074x.cpp
@@ -109,6 +109,13 @@ void m5074x_device::device_start()
}
+device_memory_interface::space_config_vector m5074x_device::memory_space_config() const
+{
+ return space_config_vector {
+ std::make_pair(AS_PROGRAM, &m_program_config)
+ };
+}
+
//-------------------------------------------------
// device_reset - device-specific reset
//-------------------------------------------------