diff options
author | 2017-07-01 12:11:28 +0200 | |
---|---|---|
committer | 2017-07-03 08:03:57 +0200 | |
commit | cbbbd07484c736eae2069b294ec666f231e64bff (patch) | |
tree | b94a690f0ab10635eb6d11837425744208c7e8a4 /src/devices/video/scn2674.cpp | |
parent | cb1930f6e6a6b460577f01207888eab402469e9f (diff) |
dimemory: Lift the cap on the number of address spaces per device [O. Galibert]
Diffstat (limited to 'src/devices/video/scn2674.cpp')
-rw-r--r-- | src/devices/video/scn2674.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/devices/video/scn2674.cpp b/src/devices/video/scn2674.cpp index e5058e3a90c..78df5d1f939 100644 --- a/src/devices/video/scn2674.cpp +++ b/src/devices/video/scn2674.cpp @@ -17,7 +17,7 @@ DEFINE_DEVICE_TYPE(SCN2674_VIDEO, scn2674_device, "scn2674", "Signetics SCN2674 // default address map -static ADDRESS_MAP_START( scn2674_vram, AS_0, 8, scn2674_device ) +static ADDRESS_MAP_START( scn2674_vram, 0, 8, scn2674_device ) AM_RANGE(0x0000, 0xffff) AM_NOP ADDRESS_MAP_END @@ -53,6 +53,13 @@ scn2674_device::scn2674_device(const machine_config &mconfig, const char *tag, d { } +std::vector<std::pair<int, const address_space_config *>> scn2674_device::memory_space_config() const +{ + return std::vector<std::pair<int, const address_space_config *>> { + std::make_pair(0, &m_space_config) + }; +} + void scn2674_device::device_start() { // resolve callbacks |