summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2014-01-11 00:09:43 +0000
committer smf- <smf-@users.noreply.github.com>2014-01-11 00:09:43 +0000
commit5a89e028d557724b4613d555781ca8b6a4ceb4b7 (patch)
tree99703c024cd95dd4b6130f95877884f6ea985002
parent8dc57a3427791c9e6d76f2020a6c4af8c94568f0 (diff)
fixed slither/slithera pia hookup (nw)
-rw-r--r--src/mame/drivers/qix.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/drivers/qix.c b/src/mame/drivers/qix.c
index e0a9d3884e2..9e9598cd84d 100644
--- a/src/mame/drivers/qix.c
+++ b/src/mame/drivers/qix.c
@@ -694,10 +694,12 @@ static MACHINE_CONFIG_DERIVED( slither, qix_base )
MCFG_DEVICE_MODIFY("pia1")
MCFG_PIA_READPA_HANDLER(READ8(qix_state, slither_trak_lr_r))
MCFG_PIA_WRITEPB_HANDLER(WRITE8(qix_state, slither_76489_0_w))
+ MCFG_PIA_READPB_HANDLER(NULL)
MCFG_DEVICE_MODIFY("pia2")
MCFG_PIA_READPA_HANDLER(READ8(qix_state, slither_trak_ud_r))
MCFG_PIA_WRITEPB_HANDLER(WRITE8(qix_state, slither_76489_1_w))
+ MCFG_PIA_READPB_HANDLER(NULL)
/* video hardware */
MCFG_FRAGMENT_ADD(slither_video)