summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/zerozone.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-01-18 17:13:10 +0100
committer Olivier Galibert <galibert@pobox.com>2018-01-19 08:23:19 +0100
commitd0715c830d0f3866a6bac66c46cad83ca112c7b0 (patch)
tree2dfcfee4360916b8a6fc95d0e6c9f1e89163e088 /src/mame/drivers/zerozone.cpp
parent7f0684bcacfbbf50a1e76b4ad1f0a36a903c5511 (diff)
memory: Deambiguate handlers, also a hint of things to come (nw)
Diffstat (limited to 'src/mame/drivers/zerozone.cpp')
-rw-r--r--src/mame/drivers/zerozone.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/zerozone.cpp b/src/mame/drivers/zerozone.cpp
index 238c56fc23e..a9f7e781ff5 100644
--- a/src/mame/drivers/zerozone.cpp
+++ b/src/mame/drivers/zerozone.cpp
@@ -56,7 +56,7 @@ static ADDRESS_MAP_START( main_map, AS_PROGRAM, 16, zerozone_state )
AM_RANGE(0x080008, 0x080009) AM_READ_PORT("DSWB")
AM_RANGE(0x08000a, 0x08000b) AM_READ_PORT("DSWA")
AM_RANGE(0x084000, 0x084001) AM_WRITE(sound_w)
- AM_RANGE(0x088000, 0x0881ff) AM_RAM_DEVWRITE("palette", palette_device, write) AM_SHARE("palette")
+ AM_RANGE(0x088000, 0x0881ff) AM_RAM_DEVWRITE("palette", palette_device, write16) AM_SHARE("palette")
AM_RANGE(0x098000, 0x098001) AM_RAM /* Watchdog? */
AM_RANGE(0x09ce00, 0x09ffff) AM_RAM_WRITE(tilemap_w) AM_SHARE("videoram")
AM_RANGE(0x0b4000, 0x0b4001) AM_WRITE(tilebank_w)