summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/abc1600mac.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/abc1600mac.cpp')
-rw-r--r--src/mame/machine/abc1600mac.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/machine/abc1600mac.cpp b/src/mame/machine/abc1600mac.cpp
index c30fafe2b36..32bb4d41005 100644
--- a/src/mame/machine/abc1600mac.cpp
+++ b/src/mame/machine/abc1600mac.cpp
@@ -159,9 +159,11 @@ void abc1600_mac_device::device_reset()
// any address spaces owned by this device
//-------------------------------------------------
-const address_space_config *abc1600_mac_device::memory_space_config(address_spacenum spacenum) const
+std::vector<std::pair<int, const address_space_config *>> abc1600_mac_device::memory_space_config() const
{
- return (spacenum == AS_PROGRAM) ? &m_space_config : nullptr;
+ return std::vector<std::pair<int, const address_space_config *>> {
+ std::make_pair(AS_PROGRAM, &m_space_config)
+ };
}