diff options
author | 2018-04-20 17:44:39 +0200 | |
---|---|---|
committer | 2018-04-20 17:44:39 +0200 | |
commit | f551279bc347c5f10d865a7090603e2861509f7d (patch) | |
tree | 34cf6691c7849e252850dd3a33aa3c0973c3060b /src/devices/video/315_5124.cpp | |
parent | bc150a011757c069fb621d436bb62f85bf5d2cfc (diff) |
maps: Finish devices/video (nw)
Diffstat (limited to 'src/devices/video/315_5124.cpp')
-rw-r--r-- | src/devices/video/315_5124.cpp | 7 |
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) |