diff options
author | 2018-06-23 17:53:14 -0400 | |
---|---|---|
committer | 2018-06-23 17:53:14 -0400 | |
commit | 2578a9ddcb8dbcf6b05e01cf7b5fb7d32cd14d54 (patch) | |
tree | c39081a030680e41b043e0d09a41b9e51303cee8 | |
parent | e7f6bd1cc884481be1c41592f97a8703cbf093ac (diff) |
m5074x: added missing memory_space_config() (nw)
-rw-r--r-- | src/devices/cpu/m6502/m5074x.cpp | 7 |
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 //------------------------------------------------- |