Also found that R34 and R35 should be 10k resistors as well as R56 and R58.

Made the changes. I don't have svn access so if someone can submit the
attached diff for me...

Ruben



-----Original Message-----
From: Derrick Renaud [mailto:derrickrenaud@yahoo.com] 
Sent: Wednesday, 5 August 2009 6:19 AM
To: mamedev@dspnet.fr.eu.org
Subject: RE: [MAME] Stern Cliffhanger Tone Sounds Fix


Thanks.  So it looks like the code needs to be changed from 19k resistors to
10k.  That should make it sound right.

I'm not near a computer with svn access at the moment.  So if anyone want to
make the change, feel free.

D.

--- On Sun, 8/2/09, Ruben Panossian <malcor@tpg.com.au> wrote:

> From: Ruben Panossian <malcor@tpg.com.au>
> Subject: RE: [MAME] Stern Cliffhanger Tone Sounds Fix
> To: mamedev@dspnet.fr.eu.org
> Received: Sunday, August 2, 2009, 4:39 AM
> > From those schematics, the
> enclosed pic shows what parts need to be
> verified.
> 
> 
> Verified values.
> See attachment.
>
This commit is contained in:
Aaron Giles 2009-08-13 04:57:35 +00:00
parent 40cc74b98f
commit c4fb979fa6

View File

@ -14,7 +14,7 @@ static const discrete_555_desc desc_cliffhgr_555 =
static const discrete_mixer_desc desc_cliffhgr_mixer =
{
DISC_MIXER_IS_RESISTOR,
{ 1.0/(1.0/RES_K(4.7)+1.0/RES_K(10))+RES_K(19), 1.0/(1.0/RES_K(5.1)+1.0/RES_K(12))+RES_K(19) },
{ 1.0/(1.0/RES_K(4.7)+1.0/RES_K(10))+RES_K(10), 1.0/(1.0/RES_K(5.1)+1.0/RES_K(12))+RES_K(10) },
{ 0, 0 },
{ CAP_U(4.7), CAP_U(4.7) },
0,
@ -31,8 +31,8 @@ DISCRETE_SOUND_START(cliffhgr)
DISCRETE_INPUT_LOGIC(CLIFF_ENABLE_SND_1)
DISCRETE_INPUT_LOGIC(CLIFF_ENABLE_SND_2)
DISCRETE_555_ASTABLE(NODE_03, 1, RES_K(24), RES_K(19), CAP_U(0.047), &desc_cliffhgr_555)
DISCRETE_555_ASTABLE(NODE_04, 1, RES_K(24), RES_K(19), CAP_U(0.1), &desc_cliffhgr_555)
DISCRETE_555_ASTABLE(NODE_03, 1, RES_K(24), RES_K(10), CAP_U(0.047), &desc_cliffhgr_555)
DISCRETE_555_ASTABLE(NODE_04, 1, RES_K(24), RES_K(10), CAP_U(0.1), &desc_cliffhgr_555)
DISCRETE_ONOFF(NODE_05,CLIFF_ENABLE_SND_1,NODE_03)
DISCRETE_ONOFF(NODE_06,CLIFF_ENABLE_SND_2,NODE_04)