summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2017-07-06 10:10:36 +0200
committer GitHub <noreply@github.com>2017-07-06 10:10:36 +0200
commit445028aedf950d9e0d09645e05e3f1e25f16a6b9 (patch)
tree2df1c8a4261799e4da3736ba96d770bcb9da1bc4
parent33b04cec42f3e260cc7f36f372c8531cb0b99a96 (diff)
ddenlovr.cpp: fixed MT05900 (nw)
-rw-r--r--src/mame/drivers/ddenlovr.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/ddenlovr.cpp b/src/mame/drivers/ddenlovr.cpp
index fca54f35cc7..b2f25ca2840 100644
--- a/src/mame/drivers/ddenlovr.cpp
+++ b/src/mame/drivers/ddenlovr.cpp
@@ -2561,10 +2561,12 @@ static ADDRESS_MAP_START( funkyfig_sound_portmap, AS_IO, 8, ddenlovr_state )
ADDRESS_MAP_GLOBAL_MASK(0xff)
AM_RANGE(0x02, 0x02) AM_DEVREAD("soundlatch", generic_latch_8_device, read)
AM_RANGE(0x04, 0x04) AM_READNOP // read only once at the start
+ AM_RANGE(0x08, 0x09) AM_DEVWRITE("ym2413", ym2413_device, write)
+ AM_RANGE(0x0c, 0x0c) AM_DEVWRITE("aysnd", ay8910_device, data_w)
+ AM_RANGE(0x0e, 0x0e) AM_DEVWRITE("aysnd", ay8910_device, address_w)
ADDRESS_MAP_END
-
/***************************************************************************
Hana Kanzashi