Previous 199869 Revisions Next

r32643 Saturday 11th October, 2014 at 06:52:30 UTC by Robbbert
gottlieb: fixed a mistake
[src/mame/audio]gottlieb.c

trunk/src/mame/audio/gottlieb.c
r32642r32643
357357
358358WRITE8_MEMBER( gottlieb_sound_r1_device::speech_clock_dac_w )
359359{
360   // prevent negative clock values (and possible crash)
361   if (data < 0x65) data = 0x65;
362
360363   if (m_votrax != NULL)
361364   {
362365      // nominal clock is 0xa0
r32642r32643
425428
426429   // add the VOTRAX
427430   MCFG_DEVICE_ADD("votrax", VOTRAX_SC01, 720000)
428   MCFG_VOTRAX_SC01_REQUEST_CB(DEVWRITELINE(DEVICE_SELF_OWNER, gottlieb_sound_r1_device, votrax_request))
431   MCFG_VOTRAX_SC01_REQUEST_CB(DEVWRITELINE(DEVICE_SELF, gottlieb_sound_r1_device, votrax_request))
429432   MCFG_SOUND_ROUTE(ALL_OUTPUTS, DEVICE_SELF_OWNER, 0.50)
430433MACHINE_CONFIG_END
431434

Previous 199869 Revisions Next


© 1997-2024 The MAME Team