summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/st0016.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/st0016.cpp')
-rw-r--r--src/mame/machine/st0016.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mame/machine/st0016.cpp b/src/mame/machine/st0016.cpp
index f59b351cd5e..0d20a5112af 100644
--- a/src/mame/machine/st0016.cpp
+++ b/src/mame/machine/st0016.cpp
@@ -49,6 +49,15 @@ st0016_cpu_device::st0016_cpu_device(const machine_config &mconfig, const char *
}
+std::vector<std::pair<int, const address_space_config *>> st0016_cpu_device::memory_space_config() const
+{
+ return std::vector<std::pair<int, const address_space_config *>> {
+ std::make_pair(AS_PROGRAM, &m_space_config),
+ std::make_pair(AS_IO, &m_io_space_config)
+ };
+}
+
+
//-------------------------------------------------