From 8015c7a47f2088e17fb454248bd6695c9beb8f66 Mon Sep 17 00:00:00 2001 From: Roberto Fresca Date: Wed, 9 Sep 2009 13:42:27 +0000 Subject: [PATCH] Noraut discrete sound system: Connected the 2 remaining data lines from PPI-1 (PC5 & PC6) to the sound system. Now sounds are complete. --- src/mame/drivers/norautp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mame/drivers/norautp.c b/src/mame/drivers/norautp.c index 7ffec103fac..6f124289a6a 100644 --- a/src/mame/drivers/norautp.c +++ b/src/mame/drivers/norautp.c @@ -653,7 +653,9 @@ static WRITE8_DEVICE_HANDLER( soundlamps_w ) /* the 4 MSB are for discrete sound */ discrete_sound_w(discrete, NORAUTP_SND_EN, (data >> 7) & 0x01); - discrete_sound_w(discrete, NORAUTP_FREQ_DATA, (data >> 4) & 0x01); + discrete_sound_w(discrete, NORAUTP_FREQ_DATA, (data >> 4) & 0x07); + +// popmessage("sound bits 4-5-6-7: %02x, %02x, %02x, %02x", ((data >> 4) & 0x01), ((data >> 5) & 0x01), ((data >> 6) & 0x01), ((data >> 7) & 0x01)); } static WRITE8_DEVICE_HANDLER( counterlamps_w )