summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/e0c6200/e0c6200.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/e0c6200/e0c6200.cpp')
-rw-r--r--src/devices/cpu/e0c6200/e0c6200.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/e0c6200/e0c6200.cpp b/src/devices/cpu/e0c6200/e0c6200.cpp
index 2a50105187d..ad4e99ba8c6 100644
--- a/src/devices/cpu/e0c6200/e0c6200.cpp
+++ b/src/devices/cpu/e0c6200/e0c6200.cpp
@@ -173,9 +173,9 @@ void e0c6200_cpu_device::do_interrupt()
standard_irq_callback(m_irq_id);
}
-std::vector<std::pair<int, const address_space_config *>> e0c6200_cpu_device::memory_space_config() const
+device_memory_interface::space_config_vector e0c6200_cpu_device::memory_space_config() const
{
- return std::vector<std::pair<int, const address_space_config *>> {
+ return space_config_vector {
std::make_pair(AS_PROGRAM, &m_program_config),
std::make_pair(AS_DATA, &m_data_config)
};