diff options
Diffstat (limited to 'src/mame/drivers/mlanding.cpp')
-rw-r--r-- | src/mame/drivers/mlanding.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/mlanding.cpp b/src/mame/drivers/mlanding.cpp index 4305ce13003..60cc2f2ab42 100644 --- a/src/mame/drivers/mlanding.cpp +++ b/src/mame/drivers/mlanding.cpp @@ -718,7 +718,7 @@ static ADDRESS_MAP_START( main_map, AS_PROGRAM, 16, mlanding_state ) AM_RANGE(0x1c4000, 0x1cffff) AM_RAM AM_SHARE("sub_com_ram") AM_RANGE(0x1d0000, 0x1d0001) AM_WRITE(dma_start_w) AM_RANGE(0x1d0002, 0x1d0003) AM_WRITE(dma_stop_w) - AM_RANGE(0x200000, 0x20ffff) AM_RAM_DEVWRITE("palette", palette_device, write) AM_SHARE("palette") + AM_RANGE(0x200000, 0x20ffff) AM_RAM_DEVWRITE("palette", palette_device, write16) AM_SHARE("palette") AM_RANGE(0x240004, 0x240005) AM_READNOP // Watchdog AM_RANGE(0x240006, 0x240007) AM_READ(input_r) AM_RANGE(0x280000, 0x280fff) AM_READWRITE(power_ram_r, power_ram_w) |