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.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/video/315_5124.cpp b/src/devices/video/315_5124.cpp
index 437fe28a79b..75e27e60b54 100644
--- a/src/devices/video/315_5124.cpp
+++ b/src/devices/video/315_5124.cpp
@@ -160,9 +160,10 @@ PALETTE_INIT_MEMBER(sega315_5378_device, sega315_5378)
// default address map
-ADDRESS_MAP_START(sega315_5124_device::sega315_5124)
- AM_RANGE(0x0000, VRAM_SIZE-1) AM_RAM
-ADDRESS_MAP_END
+void sega315_5124_device::sega315_5124(address_map &map)
+{
+ map(0x0000, VRAM_SIZE-1).ram();
+}
sega315_5124_device::sega315_5124_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)