summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/315_5124.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/315_5124.cpp')
-rw-r--r--src/devices/video/315_5124.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/devices/video/315_5124.cpp b/src/devices/video/315_5124.cpp
index 21473f6d018..2a1f684ad88 100644
--- a/src/devices/video/315_5124.cpp
+++ b/src/devices/video/315_5124.cpp
@@ -160,7 +160,7 @@ PALETTE_INIT_MEMBER(sega315_5378_device, sega315_5378)
// default address map
-static ADDRESS_MAP_START( sega315_5124, AS_0, 8, sega315_5124_device )
+static ADDRESS_MAP_START( sega315_5124, 0, 8, sega315_5124_device )
AM_RANGE(0x0000, VRAM_SIZE-1) AM_RAM
ADDRESS_MAP_END
@@ -200,6 +200,14 @@ sega315_5378_device::sega315_5378_device(const machine_config &mconfig, const ch
}
+std::vector<std::pair<int, const address_space_config *>> sega315_5124_device::memory_space_config() const
+{
+ return std::vector<std::pair<int, const address_space_config *>> {
+ std::make_pair(0, &m_space_config)
+ };
+}
+
+
void sega315_5124_device::set_display_settings()
{
const bool M1 = m_reg[0x01] & 0x10;