From 2578a9ddcb8dbcf6b05e01cf7b5fb7d32cd14d54 Mon Sep 17 00:00:00 2001 From: arbee Date: Sat, 23 Jun 2018 17:53:14 -0400 Subject: [PATCH] m5074x: added missing memory_space_config() (nw) --- src/devices/cpu/m6502/m5074x.cpp | 7 +++++++ 1 file changed, 7 insertions(+) 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 //-------------------------------------------------