summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-04-29 20:57:38 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-04-29 20:57:38 +0000
commit9cc17ba1f662ef386b8d459af0df407846756e3c (patch)
tree0a3c421b6e563da5cf164df82953759a099c6982
parentb42f5f2f9c94046b57a202fbc6dfb1e8fd5af56c (diff)
aysnd wasn't hooked up in dealer (MT bug 4787)
-rw-r--r--src/mame/drivers/epos.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/epos.c b/src/mame/drivers/epos.c
index dca11e5fc59..8a4ed2a29a9 100644
--- a/src/mame/drivers/epos.c
+++ b/src/mame/drivers/epos.c
@@ -89,8 +89,10 @@ static ADDRESS_MAP_START( dealer_io_map, AS_IO, 8, epos_state )
ADDRESS_MAP_GLOBAL_MASK(0xff)
AM_RANGE(0x10, 0x13) AM_DEVREADWRITE_LEGACY("ppi8255", ppi8255_r, ppi8255_w)
AM_RANGE(0x20, 0x24) AM_WRITE(dealer_decrypt_rom)
+ AM_RANGE(0x34, 0x34) AM_DEVWRITE_LEGACY("aysnd", ay8910_data_w)
AM_RANGE(0x38, 0x38) AM_READ_PORT("DSW")
-// AM_RANGE(0x40, 0x40) AM_WRITE(watchdog_reset_w)
+ AM_RANGE(0x3C, 0x3C) AM_DEVWRITE_LEGACY("aysnd", ay8910_address_w)
+ AM_RANGE(0x40, 0x40) AM_WRITE(watchdog_reset_w)
ADDRESS_MAP_END