summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/apexc/apexc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/apexc/apexc.cpp')
-rw-r--r--src/devices/cpu/apexc/apexc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/apexc/apexc.cpp b/src/devices/cpu/apexc/apexc.cpp
index c0e7a99364f..e26c6c094b4 100644
--- a/src/devices/cpu/apexc/apexc.cpp
+++ b/src/devices/cpu/apexc/apexc.cpp
@@ -351,9 +351,9 @@ apexc_cpu_device::apexc_cpu_device(const machine_config &mconfig, const char *ta
{
}
-std::vector<std::pair<int, const address_space_config *>> apexc_cpu_device::memory_space_config() const
+device_memory_interface::space_config_vector apexc_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_IO, &m_io_config)
};