diff options
Diffstat (limited to 'src/devices/machine/at28c16.cpp')
-rw-r--r-- | src/devices/machine/at28c16.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/at28c16.cpp b/src/devices/machine/at28c16.cpp index 7ebc30943f9..dd24cc7faed 100644 --- a/src/devices/machine/at28c16.cpp +++ b/src/devices/machine/at28c16.cpp @@ -57,9 +57,9 @@ at28c16_device::at28c16_device(const machine_config &mconfig, const char *tag, d // any address spaces owned by this device //------------------------------------------------- -std::vector<std::pair<int, const address_space_config *>> at28c16_device::memory_space_config() const +device_memory_interface::space_config_vector at28c16_device::memory_space_config() const { - return std::vector<std::pair<int, const address_space_config *>> { + return space_config_vector { std::make_pair(0, &m_space_config) }; } |